Skip to content

Commit 76c0b7a

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent f3ed6e2 commit 76c0b7a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

sql/hash/hash.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var digestPool = sync.Pool{
3333
// ExprsToSchema converts a list of sql.Expression to a sql.Schema.
3434
// This is used for functions that use HashOf, but don't already have a schema.
3535
// The generated schema ONLY contains the types of the expressions without any column names or any other info.
36-
func ExprsToSchema(exprs... sql.Expression) sql.Schema {
36+
func ExprsToSchema(exprs ...sql.Expression) sql.Schema {
3737
var sch sql.Schema
3838
for _, expr := range exprs {
3939
sch = append(sch, &sql.Column{Type: expr.Type()})

sql/plan/hash_lookup.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,3 @@ func (n *HashLookup) GetHashKey(ctx *sql.Context, e sql.Expression, row sql.Row)
143143
func (n *HashLookup) Dispose() {
144144
n.Lookup = nil
145145
}
146-

0 commit comments

Comments
 (0)