I am issuing a query like: "select col1 a, col2 b from tableA where a between 100 and 101" to my calcite based jdbc driver.
The calcite query plan uses a SEARCH operator for the between filter. However I see calcite has a BETWEEN operator in org.apache.calcite.sql.fun.
Any ideas? Its using also SEARCH when I use IN in my sql. I am ok with that. But why SEARCH for BETWEEN. Thanks in advance for any help.