Skip to content

Commit 4217c71

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent ae36e9f commit 4217c71

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

enginetest/queries/function_queries.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,4 +1100,4 @@ var FunctionQueryTests = []QueryTest{
11001100
Query: `SELECT SUBSTR(SUBSTRING('0123456789ABCDEF', 1, 10), -4)`,
11011101
Expected: []sql.Row{{"6789"}},
11021102
},
1103-
}
1103+
}

sql/expression/function/export_set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,4 +227,4 @@ func (e *ExportSet) Eval(ctx *sql.Context, row sql.Row) (interface{}, error) {
227227
}
228228

229229
return strings.Join(result, separatorVal), nil
230-
}
230+
}

sql/expression/function/export_set_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,4 @@ func TestExportSetArguments(t *testing.T) {
146146
_, err := NewExportSet(args...)
147147
require.NoError(err)
148148
}
149-
}
149+
}

sql/expression/function/make_set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,4 @@ func (m *MakeSet) Eval(ctx *sql.Context, row sql.Row) (interface{}, error) {
149149
}
150150

151151
return strings.Join(result, ","), nil
152-
}
152+
}

sql/expression/function/make_set_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ func TestMakeSetArguments(t *testing.T) {
145145
_, err := NewMakeSet(args...)
146146
require.NoError(err)
147147
}
148-
}
148+
}

0 commit comments

Comments
 (0)