Skip to content

Commit 1fd25cd

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent 3ce829a commit 1fd25cd

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

enginetest/memory_engine_test.go

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,16 +200,14 @@ func TestSingleScript(t *testing.T) {
200200
t.Skip()
201201
var scripts = []queries.ScriptTest{
202202
{
203-
Name: "test script",
203+
Name: "test script",
204204
SetUpScript: []string{
205205
"create table t (i int);",
206206
},
207-
Assertions: []queries.ScriptTestAssertion{
207+
Assertions: []queries.ScriptTestAssertion{
208208
{
209-
Query: "select 1 into @a",
210-
Expected: []sql.Row{
211-
212-
},
209+
Query: "select 1 into @a",
210+
Expected: []sql.Row{},
213211
},
214212
},
215213
},

sql/rowexec/show.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func (b *BaseBuilder) buildDescribeQuery(ctx *sql.Context, n *plan.DescribeQuery
8484
return sql.RowsToRowIter(rows...), nil
8585
}
8686

87-
dummyRow := sql.Row {
87+
dummyRow := sql.Row{
8888
1, // id
8989
"SELECT", // select_type
9090
"NULL", // table
@@ -96,7 +96,7 @@ func (b *BaseBuilder) buildDescribeQuery(ctx *sql.Context, n *plan.DescribeQuery
9696
"NULL", // ref
9797
"NULL", // rows
9898
"NULL", // filtered
99-
"", // Extra
99+
"", // Extra
100100
}
101101
return sql.RowsToRowIter(dummyRow), nil
102102
}

0 commit comments

Comments
 (0)