Skip to content

Commit b40db03

Browse files
committed
amend textt table name and check existence
1 parent 53f66ae commit b40db03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

enginetest/queries/json_scripts.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ var JsonScripts = []ScriptTest{
212212
{
213213
Name: "json_object with escaped k:v pairs from table",
214214
SetUpScript: []string{
215-
`CREATE TABLE textt (t text);`,
216-
`INSERT INTO textt VALUES ('first row\n\\'), ('second row"');`,
215+
`CREATE TABLE textt_7998 (t text) IF NOT EXISTS;`,
216+
`INSERT INTO textt_7998 VALUES ('first row\n\\'), ('second row"');`,
217217
},
218218
Assertions: []ScriptTestAssertion{
219219
{

0 commit comments

Comments
 (0)