-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve parsing DynamoDB begins_with expression #2583
Conversation
A query fails if it has a space between `begins_with` and `(`, for example: ```begins_with (getmoto#1, :1)``` Fix getmoto#1996
Oh, come on! |
Now it's ready to merge! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thank you for fixing this!! |
Ran into this error just in time to enjoy this fix! Is there a snapshot version I can use until this is in a released version? |
Try the latest snapshot on PyPI. |
That did the trick, thanks again for the fix, made my day! |
Did you release the version with the fix? Last version in PyPi is 1.3.14, which is released in November 2019. @mikegrima ? |
Hi @trilliput, this fix is included in the latest dev-release: https://pypi.org/project/moto/#history |
@bblommers Oh, I see now. Thanks! |
A query fails if it has a space between
begins_with
and(
,for example:
begins_with (#1, :1)
Fix #1996