-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: timestamp inequality support (#52)
# Rationale for this change Quick PR to add support for inequality expressions between timestamps. Since theyre represented internally as i64, they can be easily compared against one another. # What changes are included in this PR? Adds support for statements with the following syntax: ``` SELECT * FROM table WHERE times <= timestamp '1970-01-01T00:00:00Z SELECT * FROM table WHERE times >= timestamp '1970-01-01T00:00:00Z SELECT * FROM table WHERE times > timestamp '1970-01-01T00:00:00Z SELECT * FROM table WHERE times < timestamp '1970-01-01T00:00:00Z ``` # Are these changes tested? yes
- Loading branch information
1 parent
54584e5
commit 255ebeb
Showing
2 changed files
with
157 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters