You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My DynamoDB query causes an error in aws but not in moto, where it succeeds and returns results (running 5.0.26).
The error raised in aws is: An error occurred (ValidationException) when calling the Query operation: Value provided in ExpressionAttributeNames unused in expressions: keys: {#visible}
Note that #visible and :visible_true are not used in expressions.
With #7742 the same validation error has been added to dynamo db updates, but it is missing from queries. It could well be missing for other operations too, worth checking.
The text was updated successfully, but these errors were encountered:
My DynamoDB query causes an error in aws but not in moto, where it succeeds and returns results (running 5.0.26).
The error raised in aws is:
An error occurred (ValidationException) when calling the Query operation: Value provided in ExpressionAttributeNames unused in expressions: keys: {#visible}
The query:
Note that
#visible
and:visible_true
are not used in expressions.With #7742 the same validation error has been added to dynamo db updates, but it is missing from queries. It could well be missing for other operations too, worth checking.
The text was updated successfully, but these errors were encountered: