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
Extending the example given in the readme, I attempted the following -
Limbo v0.0.10 Enter ".help" for usage hints. limbo> CREATE TABLE users (id INT PRIMARY KEY, username TEXT); limbo> INSERT INTO users VALUES (1, 'alice'); limbo> INSERT INTO users VALUES (1, 'abra'); // should've failed. limbo> select * from users; 1|alice 1|abra
This should've failed to insert (1, 'abra') due to unique constraint but it didn't. Would be happy to pick the fix if it's indeed an error btw :)
The text was updated successfully, but these errors were encountered:
Duplicate of #472
Sorry, something went wrong.
No branches or pull requests
Extending the example given in the readme, I attempted the following -
This should've failed to insert (1, 'abra') due to unique constraint but it didn't.
Would be happy to pick the fix if it's indeed an error btw :)
The text was updated successfully, but these errors were encountered: