-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support CCL search operators #511
Comments
To implement, concourse/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TObject.java Line 675 in 19c4ae4
concourse/concourse-server/src/main/java/com/cinchapi/concourse/server/storage/db/Database.java Line 536 in 19c4ae4
|
Need to have a fallback for timestamp queries with search operators. So, in the Database will need to support the search operators in the IndexRecord#findAndGet. |
I think find is the only Store routine that calls into explore. If so, get rid of explore and just implement the logic in find directly. This will make it easy to call into the search method in the Database when trying to respond to a search operator |
An alternative is to add logic in Finder to check if the operator is a search operator and therefore defer to the engine search method. This will mean we can't support historical search |
^^^ that won't work for navigation keys though |
Support cinchapi/ccl#42
When search operators are included, query logic should leverage search() functions
The text was updated successfully, but these errors were encountered: