Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up[SQLite] SQLite has no support for the `DEFAULT` keyword #157
Comments
sgrif
added this to the 0.5 milestone
Jan 31, 2016
added a commit
that referenced
this issue
Jan 31, 2016
added a commit
that referenced
this issue
Feb 1, 2016
added a commit
that referenced
this issue
Feb 1, 2016
added a commit
that referenced
this issue
Feb 1, 2016
This comment has been minimized.
|
Fixed by #166 |
sgrif
closed this
Feb 1, 2016
added a commit
that referenced
this issue
Feb 3, 2016
added a commit
that referenced
this issue
Feb 3, 2016
added a commit
that referenced
this issue
Feb 3, 2016
added a commit
that referenced
this issue
Feb 3, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sgrif commentedJan 31, 2016
Note: PRs addressing this issue should target the
diesel-sqlite-supportbranch, notmaster.I don't see a good way to work around this and support batch inserts for the time being. I think the short term solution comes in 3 steps.
Insertablegeneric over the backend, so we can change the behavior for SQLite.INSERT INTO users (name, hair_color) VALUES ('Tess', DEFAULT), instead generateINSERT INTO users (name) VALUES ('Tess').We can revisit batch inserts in the future. Single inserts are the overwhelmingly common case, so let's focus on that for now.