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
It seems missing digits for UUID are currently filled up with zeros and - delimiters don't matter:
UUID
-
kuzu> WITH UUID("1") as id RETURN id; ---------------------------------------- | id | ---------------------------------------- | 00000000-0000-0001-0000-000000000000 | ---------------------------------------- (1 tuple) (1 column) kuzu> WITH UUID("11111111111111111") as id RETURN id; ---------------------------------------- | id | ---------------------------------------- | 11111111-1111-1111-0000-000000000001 | ---------------------------------------- (1 tuple) (1 column)
Please don't try to convert wrong UUIDs to something valid (also for testing purposes). Instead I'd suggest to just fail hard here.
The text was updated successfully, but these errors were encountered:
hououou
Successfully merging a pull request may close this issue.
It seems missing digits for
UUID
are currently filled up with zeros and-
delimiters don't matter:Please don't try to convert wrong UUIDs to something valid (also for testing purposes). Instead I'd suggest to just fail hard here.
The text was updated successfully, but these errors were encountered: