We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f8c32 commit 173baafCopy full SHA for 173baaf
internal/rule/squashjoins_test.go
@@ -2531,3 +2531,7 @@ type dummyLookup struct {
2531
func (dummyLookup) Values() (sql.IndexValueIter, error) {
2532
panic("dummyLookup Values is a placeholder")
2533
}
2534
+
2535
+func (l dummyLookup) Indexes() []string {
2536
+ return []string{fmt.Sprintf("index_%d", l.n)}
2537
+}
squash_iterator_test.go
@@ -1010,3 +1010,7 @@ type lookup struct {
1010
func (l lookup) Values() (sql.IndexValueIter, error) {
1011
return l.values, nil
1012
1013
1014
+func (l lookup) Indexes() []string {
1015
+ return []string{"test_idx"}
1016
0 commit comments