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
sqlite> create table foo (pk TEXT PRIMARY KEY); sqlite> insert into foo values ('lol'); sqlite> insert into foo values ('lol'); Runtime error: UNIQUE constraint failed: foo.pk (19) sqlite> create table foo_int (pk INT PRIMARY KEY); sqlite> insert into foo_int values (1); sqlite> insert into foo_int values (1); Runtime error: UNIQUE constraint failed: foo_int.pk (19)
limbo> create table foo (pk TEXT PRIMARY KEY); limbo> insert into foo values ('lol'); limbo> insert into foo values ('lol'); limbo> create table foo_int (pk INT PRIMARY KEY); limbo> insert into foo_int values (1); limbo> insert into foo_int values (1); limbo> create table foo_rowid_alias (pk INTEGER PRIMARY KEY); limbo> insert into foo_rowid_alias values (1); limbo> insert into foo_rowid_alias values (1); Runtime error: UNIQUE constraint failed: foo_rowid_alias.pk (19)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: