diff options
author | Rémi Nicole <nicole@kolabsystems.com> | 2018-05-28 10:08:49 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-28 10:09:31 +0200 |
commit | f400cee1d5896577c22626d0cf50478057989857 (patch) | |
tree | e24e77562e0e893f281965c512ca4b74f88b20d3 /common/query.h | |
parent | 411c7cdad70c5c7902002545fd107ed1b2ac06ac (diff) | |
download | sink-f400cee1d5896577c22626d0cf50478057989857.tar.gz sink-f400cee1d5896577c22626d0cf50478057989857.zip |
Implement ranged queries
Summary:
Notes:
- For now, only for QDateTime indexes
- Invalid QDateTimes are stored in the index (subject to change)
- Should be a drop-in replacement from ValueIndexes (except for `In` and `Contains` queries)
Reviewers: cmollekopf
Tags: #sink
Differential Revision: https://phabricator.kde.org/D13105
Diffstat (limited to 'common/query.h')
-rw-r--r-- | common/query.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/query.h b/common/query.h index f0c1e01..7130116 100644 --- a/common/query.h +++ b/common/query.h | |||
@@ -36,6 +36,7 @@ public: | |||
36 | Equals, | 36 | Equals, |
37 | Contains, | 37 | Contains, |
38 | In, | 38 | In, |
39 | Within, | ||
39 | Fulltext | 40 | Fulltext |
40 | }; | 41 | }; |
41 | 42 | ||