Skip to content

Commit dad9d62

Browse files
committed
skip prepared
1 parent 367091e commit dad9d62

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

enginetest/queries/script_queries.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ type ScriptTestAssertion struct {
124124
var ScriptTests = []ScriptTest{
125125
{
126126
// https://github.com/dolthub/dolt/issues/9316
127-
Name: "CREATE TABLE with constraints AS SELECT osticket repro",
127+
Name: "CREATE TABLE with constraints AS SELECT osticket repro",
128+
SkipPrepared: true, // SHOW KEYS with WHERE clause doesn't work with prepared statements
128129
SetUpScript: []string{
129130
"CREATE TABLE ost_form_entry (id INT PRIMARY KEY, object_id INT, object_type VARCHAR(1))",
130131
"CREATE TABLE ost_form_entry_values (entry_id INT, field_id INT, value VARCHAR(100), value_id INT)",
@@ -165,7 +166,8 @@ var ScriptTests = []ScriptTest{
165166
},
166167
{
167168
// https://github.com/dolthub/dolt/issues/9316
168-
Name: "CREATE TABLE with constraints AS SELECT",
169+
Name: "CREATE TABLE with constraints AS SELECT",
170+
SkipPrepared: true,
169171
SetUpScript: []string{
170172
"CREATE TABLE t1 (a int not null, b varchar(10))",
171173
"INSERT INTO t1 VALUES (1, 'one'), (2, 'two'), (3, 'three')",

0 commit comments

Comments
 (0)