-
Notifications
You must be signed in to change notification settings - Fork 804
New issue
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: Adds a few more tests, fixes DROP TABLE #1443
SQLite: Adds a few more tests, fixes DROP TABLE #1443
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small comment, but I'm going to merge.
@@ -1 +1,3 @@ | |||
CREATE TABLE venues (name text); | |||
|
|||
CREATE TABLE IF NOT EXISTS arenas (name text PRIMARY KEY, location text, size int NOT NULL) WITHOUT ROWID; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we create a separate test for create table without rowID? I don't think it applies to any other engine than SQLite
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do, I was mostly trying to exercise the parser and make sure it didn't complain, I don't think these extra options have any impact on anything that sqlc
cares about.
Continuing to fill out SQLite end-to-end data.