We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e31b0 commit 37be67cCopy full SHA for 37be67c
enginetest/queries/script_queries.go
@@ -188,6 +188,20 @@ var ScriptTests = []ScriptTest{
188
},
189
190
191
+ {
192
+ Name: "bits don't work on server",
193
+ Dialect: "mysql",
194
+ SetUpScript: []string{
195
+ "create table t (b bit(1));",
196
+ "insert into t values (1)",
197
+ },
198
+ Assertions: []ScriptTestAssertion{
199
200
+ Query: "select * from t;",
201
+ Expected: []sql.Row{{uint64(1)}},
202
203
204
205
{
206
Name: "outer join finish unmatched right side",
207
SetUpScript: []string{
0 commit comments