Skip to content

Commit 1031166

Browse files
committed
fix table name in test
1 parent 9fc0d7e commit 1031166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

enginetest/queries/script_queries.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ var ScriptTests = []ScriptTest{
125125
Skip: true,
126126
Name: "Ordering by pk does not change the order of results",
127127
SetUpScript: []string{
128-
"CREATE TABLE test_cast(pk VARCHAR(50) PRIMARY KEY)",
129-
"INSERT INTO test_cast VALUES (' 3 12 4'), ('3. 12 4'), ('3.2 12 4'), ('-3.1234'), ('-3.1a'), ('-5+8'), ('+3.1234')",
128+
"CREATE TABLE test(pk VARCHAR(50) PRIMARY KEY)",
129+
"INSERT INTO test VALUES (' 3 12 4'), ('3. 12 4'), ('3.2 12 4'), ('-3.1234'), ('-3.1a'), ('-5+8'), ('+3.1234')",
130130
},
131131
Assertions: []ScriptTestAssertion{
132132
{

0 commit comments

Comments
 (0)