-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fix star expression bind for property graph #193
base: main
Are you sure you want to change the base?
Conversation
@@ -191,23 +191,23 @@ EDGE TABLES ( | |||
DESTINATION KEY(collegeID) REFERENCES College(id) | |||
PROPERTIES (classYear) LABEL studiesAt ); | |||
|
|||
query IIII | |||
query III |
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.
Test cases to verify only registered columns are returned.
@@ -25,7 +25,7 @@ EDGE TABLES ( | |||
query IIIIIIIIIII | |||
-FROM GRAPH_TABLE (snb MATCH (p:Person)) limit 1; | |||
---- | |||
2010-01-03 23:10:31.499+00 14 Hossein Forouhar male 1984-03-11 77.245.239.11 Firefox 1166 fa;ku;en [email protected] | |||
1166 1984-03-11 Firefox 2010-01-03 23:10:31.499+00 [email protected] Hossein male 14 Forouhar 77.245.239.11 fa;ku;en |
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.
NOTICE: This is a behavior change.
- For star expression, duckdb returns columns in the order of they are declared in the
CREATE
statement; - While I'm directly using
columns
in the property graph table: https://github.com/cwida/duckdb-pgq/blob/c380346433db588352999594227f2f8d23be2f49/src/include/duckdb/parser/property_graph_table.hpp#L33 - I think it's ok since they're actually two different SQL statements, so don't need to seek for completely compatibility here; but if it's required, I need to check how property graph table is constructed and why is the ordering difference.
7af3d90
to
13a430b
Compare
0a876d2
to
13a430b
Compare
merged the main branch and resolved all conflicts, should be good to review |
Addresses issue: #192
The core idea for this PR is, when a star expression is met, we only include the ones include in the property graph.