Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions enginetest/queries/script_queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -14657,6 +14657,21 @@ select * from t1 except (
},
},
},
{
// https://github.com/dolthub/dolt/issues/10246
Dialect: "mysql",
Name: "boolean keys are not used for string column lookups",
SetUpScript: []string{
"create table t1(c0 varchar(500), primary key(c0))",
"insert into t1(c0) values ('')",
},
Assertions: []ScriptTestAssertion{
{
Query: "select 1 from t1 where false=t1.c0",
Expected: []sql.Row{{1}},
},
},
},
}

var SpatialScriptTests = []ScriptTest{
Expand Down
Loading