Support INSERT INTO ... DEFAULT VALUES ... (#1036)

This commit is contained in:
Drew Thomas 2023-11-22 07:21:26 +11:00 committed by GitHub
parent 5bdf2e6608
commit 3d2773a794
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 150 additions and 25 deletions

View file

@ -1379,7 +1379,7 @@ fn parse_prepare() {
Statement::Insert {
table_name,
columns,
source,
source: Some(source),
..
} => {
assert_eq!(table_name.to_string(), "customers");