Issue #1539 : Fixing dynamodb filtering (contains, begins with)
Currently contains and begins with are not respecting the given filter value
This commit is contained in:
parent
56f29a0e6e
commit
09ac77d979
@ -176,6 +176,8 @@ def get_filter_expression(expr, names, values):
|
||||
|
||||
next_token = six.next(token_iterator)
|
||||
while next_token != ')':
|
||||
if next_token in values_map:
|
||||
next_token = values_map[next_token]
|
||||
function_list.append(next_token)
|
||||
next_token = six.next(token_iterator)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user