Skip to content

Commit 7be100f

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent 0936f9d commit 7be100f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

enginetest/queries/alter_table_queries.go

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
package queries
1616

1717
import (
18+
"github.com/dolthub/vitess/go/mysql"
19+
1820
"github.com/dolthub/go-mysql-server/sql"
1921
"github.com/dolthub/go-mysql-server/sql/types"
20-
"github.com/dolthub/vitess/go/mysql"
2122
)
2223

2324
var AlterTableScripts = []ScriptTest{
@@ -309,26 +310,26 @@ var AlterTableScripts = []ScriptTest{
309310
},
310311
},
311312
{
312-
Query: "INSERT INTO t40 VALUES (NULL, 4)",
313+
Query: "INSERT INTO t40 VALUES (NULL, 4)",
313314
ExpectedErr: sql.ErrInsertIntoNonNullableProvidedNull,
314315
},
315316
{
316317
Query: "drop table t40",
317-
Expected: []sql.Row{{types.NewOkResult(0)}},
318+
Expected: []sql.Row{{types.NewOkResult(0)}},
318319
},
319320
{
320321
Query: "CREATE TABLE t40 (pk int AUTO_INCREMENT PRIMARY KEY, val int)",
321-
Expected: []sql.Row{{types.NewOkResult(0)}},
322+
Expected: []sql.Row{{types.NewOkResult(0)}},
322323
},
323324
{
324-
Query: "INSERT INTO t40 VALUES (NULL, 1)",
325-
Expected: []sql.Row{{types.OkResult{
325+
Query: "INSERT INTO t40 VALUES (NULL, 1)",
326+
Expected: []sql.Row{{types.OkResult{
326327
RowsAffected: 1,
327328
InsertID: 1,
328329
}}},
329330
},
330331
{
331-
Query: "SELECT * FROM t40",
332+
Query: "SELECT * FROM t40",
332333
Expected: []sql.Row{{1, 1}},
333334
},
334335
},

0 commit comments

Comments
 (0)