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
{{ message }}
This repository has been archived by the owner on May 14, 2021. It is now read-only.
When using queries Datastore may throw exceptions at runtime while validating query. We can check code generated by macro and check if it may validate some conditions.
Cases on which query may fail:
Multiple inequality criteria (Option.isDefined is also checked using _ > null criteria
Inequality filter property and first sort order property are different.
e.g Select * from Entity where foo > 'xyz' and bar = 123 order by bar
The text was updated successfully, but these errors were encountered:
When using queries Datastore may throw exceptions at runtime while validating query. We can check code generated by macro and check if it may validate some conditions.
Cases on which query may fail:
_ > null
criteriae.g
Select * from Entity where foo > 'xyz' and bar = 123 order by bar
The text was updated successfully, but these errors were encountered: