-
Notifications
You must be signed in to change notification settings - Fork 7
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 error element_id #68
Comments
Same goes for |
A related issue is in the following test case in -FROM GRAPH_TABLE (pg
MATCH
p = ANY SHORTEST (a:Person)-[k:knows]->{1,3}(b:Person)
WHERE a.name = 'Daniel'
COLUMNS (p, a.name as name, b.name as b_name)
) study; Binder Error: Referenced column "p" not found in FROM clause! |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
A cleaner way to implement this is to rename the UDFs |
The current error when using element_id(o) is:
As the way element_id is implemented is by checking the column list and seeing if there is a function named
element_id
, matching a named subpath. If the named subpath is not found, this will throw the above error, which is confusing. Change it to a more helpful error message.The text was updated successfully, but these errors were encountered: