Skip to content

Commit 61fbb0b

Browse files
committed
Merge branch 'zachmu/split-queries' of github.com:dolthub/go-mysql-server into zachmu/split-queries
2 parents dbe2528 + 4217c71 commit 61fbb0b

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
@@ -1028,4 +1028,4 @@ var FunctionQueryTests = []QueryTest{
10281028
Query: `SELECT SUBSTR(SUBSTRING('0123456789ABCDEF', 1, 10), -4)`,
10291029
Expected: []sql.Row{{"6789"}},
10301030
},
1031-
}
1031+
}

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)