Skip to content

Commit

Permalink
Costed index scan partial impl
Browse files Browse the repository at this point in the history
  • Loading branch information
max-hoffman committed Nov 2, 2023
1 parent 6985ecd commit 98924b6
Show file tree
Hide file tree
Showing 5 changed files with 1,204 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sql/analyzer/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ func gt(left, right sql.Expression) sql.Expression {
return expression.NewGreaterThan(left, right)
}

func lt(left, right sql.Expression) sql.Expression {
return expression.NewLessThan(left, right)
}

func or(left, right sql.Expression) sql.Expression {
return expression.NewOr(left, right)
}
Expand Down
Loading

0 comments on commit 98924b6

Please sign in to comment.