Skip to content

Commit f9d9b7b

Browse files
committed
rename test table
1 parent 52de462 commit f9d9b7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

enginetest/queries/script_queries.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,12 @@ var ScriptTests = []ScriptTest{
124124
// Regression test for https://github.com/dolthub/dolt/issues/9641
125125
Name: "bit union regression test dolt#9641",
126126
SetUpScript: []string{
127-
"CREATE TABLE bit_test_table (id INT PRIMARY KEY, flag BIT(1))",
128-
"INSERT INTO bit_test_table VALUES (1, 0), (2, 1)",
127+
"CREATE TABLE bit_union_test_9641 (id INT PRIMARY KEY, flag BIT(1))",
128+
"INSERT INTO bit_union_test_9641 VALUES (1, 0), (2, 1)",
129129
},
130130
Assertions: []ScriptTestAssertion{
131131
{
132-
Query: "SELECT flag FROM bit_test_table WHERE id = 1 UNION SELECT NULL as flag",
132+
Query: "SELECT flag FROM bit_union_test_9641 WHERE id = 1 UNION SELECT NULL as flag",
133133
Expected: []sql.Row{{uint64(0)}, {nil}},
134134
},
135135
},

0 commit comments

Comments
 (0)