Skip to content

Commit 6e545db

Browse files
author
James Cor
committed
rest of feedback
1 parent c9f8f61 commit 6e545db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/expression/comparison_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ func TestGreaterThan(t *testing.T) {
220220
}
221221

222222
func TestValueComparison(t *testing.T) {
223-
// TODO
223+
t.Skip("TODO: write tests for comparison between sql.Values")
224224
}
225225

226226
// BenchmarkComparison

sql/plan/indexed_table_access.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ func (i *IndexedTableAccess) GetLookup(ctx *sql.Context, row sql.Row) (sql.Index
307307
return i.lb.GetLookup(ctx, key)
308308
}
309309

310-
func (i *IndexedTableAccess) getLookup2(ctx *sql.Context, row sql.ValueRow) (sql.IndexLookup, error) {
310+
func (i *IndexedTableAccess) getValueLookup(ctx *sql.Context, row sql.ValueRow) (sql.IndexLookup, error) {
311311
// if the lookup was provided at analysis time (static evaluation), use it.
312312
if !i.lookup.IsEmpty() {
313313
return i.lookup, nil

0 commit comments

Comments
 (0)