We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In order to improve performance detect queries of pattern:
SELECT FROM <class> WHERE @rid=<rid> select from user where @rid=#43:0
and convert them into
SELECT FROM <rid> select from #43:0 select from [#43:0, #43:1]
or the below to be safe
SELECT FROM <rid> WHERE @class=<class> select from #43:0 WHERE @class='user' select from [#43:0, #43:1] WHERE @class='user'
At this point not sure if this is a waterline-orientdb or a waterline-sequel-orientdb issue.
waterline-orientdb
waterline-sequel-orientdb
Care must be taken care to prevent a malicious user from retrieving records he doesn't have access to.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
In order to improve performance detect queries of pattern:
and convert them into
or the below to be safe
At this point not sure if this is a
waterline-orientdb
or awaterline-sequel-orientdb
issue.Care must be taken care to prevent a malicious user from retrieving records he doesn't have access to.
The text was updated successfully, but these errors were encountered: