-
Notifications
You must be signed in to change notification settings - Fork 46
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
Predicates implementation #89
Merged
ihsandemir
merged 90 commits into
hazelcast:master
from
ihsandemir:predicatesImplementation
Apr 23, 2016
Merged
Predicates implementation #89
ihsandemir
merged 90 commits into
hazelcast:master
from
ihsandemir:predicatesImplementation
Apr 23, 2016
Conversation
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
…d/writeObject and added BetweenPredicate.
…cate work for primitives.
…dentifiedDataSerializable.
…dentifiedDataSerializable.
…lcast-cpp-client into predicatesImplementation
Test PASSed. |
ihsandemir
force-pushed
the
predicatesImplementation
branch
from
April 23, 2016 17:17
b694062
to
f6ca6f4
Compare
Test PASSed. |
ihsandemir
added a commit
to ihsandemir/hazelcast-cpp-client
that referenced
this pull request
Apr 23, 2016
Predicates implementation (hazelcast#89) * Added builtin predicates * Added and predicate. * Added missing methods in ObjectDataOutput and ObjectDataInput for read/writeObject and added BetweenPredicate. * EqualPredicate * GreaterLessPredicate * LikePredicate * InPredicate * InstanceOfPredicate * Not and NotEqual * OrPredicate * RegExPredicate * Added Predicate interface, ClientMapTest not compiling due to PagingPredicate. * PagingPredicate * Predicate with EntryListener is added. * Added values with predicate test * testEntrySetWithPredicateTest and testKeySetWithPredicateTest added * RawPointerMap API is corrected. * Changed the DataArray and EntryArray interfaces. Made the PagingPredicate work for primitives. * Fix for setAnchor * Update To map test and raw pointer examples * Added example for builtin predicate queries. * Added entry listener with different predicates tests.
Merged
ihsandemir
added a commit
that referenced
this pull request
Apr 25, 2016
* Backport of PR #89. Predicates implementation (#89) * Added builtin predicates * Added and predicate. * Added missing methods in ObjectDataOutput and ObjectDataInput for read/writeObject and added BetweenPredicate. * EqualPredicate * GreaterLessPredicate * LikePredicate * InPredicate * InstanceOfPredicate * Not and NotEqual * OrPredicate * RegExPredicate * Added Predicate interface, ClientMapTest not compiling due to PagingPredicate. * PagingPredicate * Predicate with EntryListener is added. * Added values with predicate test * testEntrySetWithPredicateTest and testKeySetWithPredicateTest added * RawPointerMap API is corrected. * Changed the DataArray and EntryArray interfaces. Made the PagingPredicate work for primitives. * Fix for setAnchor * Update To map test and raw pointer examples * Added example for builtin predicate queries. * Added entry listener with different predicates tests. * Changed the server version to 3.6.3-SNAPSHOT. Needed the fix for InstanceOfPredicate PR hazelcast/hazelcast#7977
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Implements the builtin predicates for C++. Added the tests and the examples as well.
Changes the DataArray and EntryArray API to handle for already serialized entries.