This is an automated email from the ASF dual-hosted git repository.
sorabh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from cd219ff DRILL-6466: Add HttpOnly flag to response cookies
new a27a104 DRILL-6375 : Support for ANY_VALUE aggregate function
new 2902ca9 DRILL-6463 : Fix integer overflow in MockGroupScanPOP
new 0b393ad DRILL-6446: Support for EMIT outcome in TopN - Added comments for TopNBatch
and PriorityQueueTemplate - Adding support for SchemaChange across next() call with HyperVector
in incoming container. This is achieved by adding a new method in HyperVectorWrapper which
just updates the vector[] array holding multiple vectors with provided input ValueVector
array. And also modifying RemovingRecordBatch GenericSV4Copier to hold reference to VectorWrapper
instead of ValueVect [...]
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/drill/exec/expr/fn/HiveFuncHolder.java | 2 +-
.../java-exec/src/main/codegen/data/AggrTypes1.tdd | 46 ++
.../src/main/codegen/data/DecimalAggrTypes1.tdd | 6 +
.../main/codegen/templates/AggrTypeFunctions1.java | 22 +-
.../codegen/templates/ComplexAggrFunctions1.java | 120 ++++
.../templates/DateIntervalAggrFunctions1.java | 11 +-
.../Decimal/DecimalAggrTypeFunctions1.java | 97 +++
.../codegen/templates/VarCharAggrFunctions1.java | 11 +
.../compile/sig/ConstantExpressionIdentifier.java | 7 +
.../apache/drill/exec/expr/EvaluationVisitor.java | 17 +-
.../drill/exec/expr/fn/AbstractFuncHolder.java | 2 +-
.../drill/exec/expr/fn/DrillAggFuncHolder.java | 27 +-
.../expr/fn/DrillComplexWriterAggFuncHolder.java | 142 +++++
.../apache/drill/exec/expr/fn/DrillFuncHolder.java | 34 +-
.../drill/exec/expr/fn/FunctionConverter.java | 4 +-
.../apache/drill/exec/expr/fn/impl/Mappify.java | 2 +-
.../drill/exec/expr/fn/impl/MappifyUtility.java | 34 +-
.../apache/drill/exec/physical/base/ScanStats.java | 14 +-
.../exec/physical/impl/TopN/PriorityQueue.java | 9 +
.../physical/impl/TopN/PriorityQueueTemplate.java | 70 +-
.../drill/exec/physical/impl/TopN/TopNBatch.java | 362 +++++++++--
.../physical/impl/aggregate/StreamingAggBatch.java | 67 +-
.../physical/impl/svremover/AbstractSV2Copier.java | 1 -
.../physical/impl/svremover/AbstractSV4Copier.java | 11 +-
.../physical/impl/svremover/GenericSV4Copier.java | 3 +-
.../planner/physical/ConvertCountToDirectScan.java | 2 +-
.../drill/exec/planner/physical/HashAggPrule.java | 14 +-
.../drill/exec/record/HyperVectorWrapper.java | 22 +-
.../exec/record/selection/SelectionVector4.java | 25 +-
.../drill/exec/store/mock/MockGroupScanPOP.java | 4 +-
.../drill/exec/vector/complex/MapUtility.java | 308 ++++++++-
.../physical/impl/TopN/TestTopNEmitOutcome.java | 710 +++++++++++++++++++++
.../physical/impl/agg/TestAggWithAnyValue.java | 149 +++++
.../impl/lateraljoin/TestE2EUnnestAndLateral.java | 34 +
.../test/resources/store/json/test_anyvalue.json | 50 ++
.../codegen/templates/RepeatedValueVectors.java | 1 +
.../src/main/codegen/templates/ValueHolders.java | 11 +-
.../exec/expr/holders/RepeatedListHolder.java | 2 +
.../drill/exec/expr/holders/RepeatedMapHolder.java | 3 +
.../drill/common/expression/parser/ExprLexer.g | 1 +
.../drill/common/expression/parser/ExprParser.g | 5 +
...CastExpression.java => AnyValueExpression.java} | 28 +-
.../common/expression/ExpressionStringBuilder.java | 8 +
.../common/expression/FunctionCallFactory.java | 8 +
.../expression/visitors/AbstractExprVisitor.java | 6 +
.../expression/visitors/AggregateChecker.java | 6 +
.../visitors/ConditionalExprOptimizer.java | 7 +
.../expression/visitors/ConstantChecker.java | 6 +
.../common/expression/visitors/ExprVisitor.java | 2 +
.../expression/visitors/ExpressionValidator.java | 7 +
50 files changed, 2388 insertions(+), 152 deletions(-)
create mode 100644 exec/java-exec/src/main/codegen/templates/ComplexAggrFunctions1.java
create mode 100644 exec/java-exec/src/main/java/org/apache/drill/exec/expr/fn/DrillComplexWriterAggFuncHolder.java
create mode 100644 exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/TopN/TestTopNEmitOutcome.java
create mode 100644 exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/agg/TestAggWithAnyValue.java
create mode 100644 exec/java-exec/src/test/resources/store/json/test_anyvalue.json
copy logical/src/main/java/org/apache/drill/common/expression/{CastExpression.java =>
AnyValueExpression.java} (74%)
--
To stop receiving notification emails like this one, please contact
sorabh@apache.org.
|