-
-
Notifications
You must be signed in to change notification settings - Fork 231
Fix 8193 err on empty insert vals #3055
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
base: main
Are you sure you want to change the base?
Changes from all commits
a2054ca
230f6fd
e9900ff
ebf955b
0540edb
a2bffa7
887f4c7
317599a
0e17300
e8c50a0
fa5bbd7
ad27497
f70ac7f
1921bd0
a4a2697
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
exec | ||
CREATE TABLE `unique_keyless` ( | ||
`c0` bigint, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
`c1` bigint | ||
`c0` bigint DEFAULT NULL, | ||
`c1` bigint DEFAULT NULL | ||
) | ||
---- | ||
|
||
|
@@ -15,8 +15,8 @@ insert into unique_keyless values | |
|
||
exec | ||
CREATE TABLE `keyless` ( | ||
`c0` bigint, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same |
||
`c1` bigint | ||
`c0` bigint DEFAULT NULL, | ||
`c1` bigint DEFAULT NULL | ||
) | ||
---- | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
If these are all fixed now, move the queries to
InsertScripts
and and delete theTestBrokenInsertScripts
test functions.