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
The bug can be reproduced as following:
CREATE NODE TABLE DimensionNode(model_key STRING, technical_name STRING, name STRING, aliases STRING[], PRIMARY KEY (model_key)); COPY DimensionNode FROM "<file>" (HEADER=true, DELIM=',');
dimNode.csv
Transport the db files on Mac to a Linux machine (I tried it with Ubuntu 22.04.3 LTS).
Ubuntu 22.04.3 LTS
Open the transported db files and run the query, which returns empty.
match (n:DimensionNode) where n.model_key='businessEntity::tpcds_1.tpcds.store' return n;
while, regex matching on scanned tuples can correctly return the matching tuple
kuzu> match (n:DimensionNode) where n.model_key=~'businessEntity::tpcds_1.tpcds.store' return n; ----------------------------------------------------------------------------------------------------------------------------------------------------- | n | ----------------------------------------------------------------------------------------------------------------------------------------------------- | {_ID: 0:11, _LABEL: DimensionNode, model_key: businessEntity::tpcds_1.tpcds.store, technical_name: tpcds_1.tpcds.store, name: Store, aliases: []} | ----------------------------------------------------------------------------------------------------------------------------------------------------- (1 tuple) (1 column)
Possibly, this bug can be reproduced between other platforms, but I haven't checked yet.
The text was updated successfully, but these errors were encountered:
WHERE
benjaminwinger
Successfully merging a pull request may close this issue.
The bug can be reproduced as following:
dimNode.csv
Transport the db files on Mac to a Linux machine (I tried it with
Ubuntu 22.04.3 LTS
).Open the transported db files and run the query, which returns empty.
while, regex matching on scanned tuples can correctly return the matching tuple
Possibly, this bug can be reproduced between other platforms, but I haven't checked yet.
The text was updated successfully, but these errors were encountered: