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
Run the following SQL, noting the UNIQUE:
UNIQUE
CREATE TABLE example_gid_counts ( gid TEXT UNIQUE NOT NULL, row_count INTEGER NOT NULL );
Then run .dump:
CREATE TABLE example_gid_counts ( gid TEXT UNIQUE NOT NULL, row_count INTEGER NOT NULL ); NULL
Note the extra trailing NULL in the output, which causes problems when loaded back into a database.
NULL
Without UNIQUE it works as expected:
CREATE TABLE example_gid_counts ( gid TEXT NOT NULL, row_count INTEGER NOT NULL );
.dump:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Run the following SQL, noting the
UNIQUE
:Then run .dump:
Note the extra trailing
NULL
in the output, which causes problems when loaded back into a database.Without
UNIQUE
it works as expected:.dump:
The text was updated successfully, but these errors were encountered: