Fix for https://issues.apache.org/jira/browse/OPTIQ-269 - #6
Closed
jcentenn wants to merge 1 commit into
Closed
Conversation
Detects the version of mongod to determine which kind of intermediate
result to utilize.
For versions 2.6+, a Cursor result will be returned form the
DBCollection otherwise a AggregationOutput result is returned.
An Iterator<DBObject> object is retrieved from the intermediate result
and returned by MongoTable.aggregate.
Updated dependency in for mongo-java-driver in master/mongodb/pom.xml:
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.12.3</version>
</dependency>
Contributor
Author
|
Fix for [OPTIQ-269] - see comments above |
zhumayun
pushed a commit
to zhumayun/calcite
that referenced
this pull request
May 22, 2017
# This is the 1st commit message: Added thetaSketch data type to DruidTypes # This is the commit message apache#2: Fixed code to comply with checkstyle # This is the commit message apache#3: Implemented thetaSketch and hyperUnique DruidTypes by adding an extra map to hold column type information # This is the commit message apache#4: bug fix: used fieldName as key, rather than output name # This is the commit message apache#5: Fixed test errors # This is the commit message apache#6: Fixed DruidTableFactory to include the proper druid types. (Fixes Integration test issues as well)
This file contains hidden or 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
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.
Detects the version of mongod to determine which kind of intermediate
result to utilize.
For versions 2.6+, a Cursor result will be returned form the
DBCollection otherwise a AggregationOutput result is returned.
An Iterator object is retrieved from the intermediate result
and returned by MongoTable.aggregate.
Updated dependency in for mongo-java-driver in master/mongodb/pom.xml: