Skip to content

Commit 7404470

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent 448178b commit 7404470

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

enginetest/evaluation.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -866,17 +866,17 @@ func checkResultsDefault(t *testing.T, ctx *sql.Context, expected []sql.Row, exp
866866
}
867867

868868
type resultSchemaCol struct {
869-
Name string
870-
Type querypb.Type
869+
Name string
870+
Type querypb.Type
871871
Nullable bool
872872
}
873873

874874
func simplifyResultSchema(s sql.Schema) []resultSchemaCol {
875875
fields := make([]resultSchemaCol, len(s))
876876
for i, c := range s {
877877
fields[i] = resultSchemaCol{
878-
Name: c.Name,
879-
Type: c.Type.Type(),
878+
Name: c.Name,
879+
Type: c.Type.Type(),
880880
Nullable: c.Nullable,
881881
}
882882
}

enginetest/queries/queries.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,8 +1077,8 @@ var QueryTests = []QueryTest{
10771077
Expected: []sql.Row{{nil}},
10781078
ExpectedColumns: sql.Schema{
10791079
{
1080-
Name: "s",
1081-
Type: types.Float64,
1080+
Name: "s",
1081+
Type: types.Float64,
10821082
Nullable: true,
10831083
},
10841084
},

0 commit comments

Comments
 (0)