Merge pull request #2799 from ImFlog/fix_dynamodb_updated_new
Fix UPDATED_NEW return values differences
This commit is contained in:
commit
71bf314a0f
3 changed files with 98 additions and 18 deletions
|
|
@ -146,6 +146,9 @@ class DynamoType(object):
|
|||
def __eq__(self, other):
|
||||
return self.type == other.type and self.value == other.value
|
||||
|
||||
def __ne__(self, other):
|
||||
return self.type != other.type or self.value != other.value
|
||||
|
||||
def __lt__(self, other):
|
||||
return self.cast_value < other.cast_value
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue