This is an automated email from the ASF dual-hosted git repository.
arina pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from 89e0fe6 DRILL-6027: - Added fallback option for HashJoin. - No
copy of incoming for single partition, and avoid HT resize. - Fix memory leak
when cancelling while spill file is read - get correct schema when probe side
is empty - Re-create the HashJoinProbe
new 5a3a73a DRILL-6420: Add Lateral and Unnest Keyword for highlighting
on WebUI
new 5dd8a6f DRILL-6255: Drillbit while sending control message to itself
creates a connection instead of submitting locally
new bdbd93f DRILL-6421: Refactor DecimalUtility and CoreDecimalUtility
classes
new 55f2599 DRILL-6426: Refactor TestFunctionsWithTypeExpoQueries test to
be independent on limit 0 optimization option
new 5d22d70 DRILL-6413: Update ParquetFilterBuilder.visitBooleanOperator
to handle simplified boolean expression
new 1cd6ee8 DRILL-6424: Updating FasterXML Jackson libraries
new 1a28fd8 DRILL-4525: Allow SqlBetweenOperator to accept LOWER_OPERAND
and UPPER_OPERAND with different types
new f4f4dc5 DRILL-4525: Code cleanup
The 8 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:
.../java/org/apache/drill/common/types/Types.java | 106 ++--
.../drill/common/util/CoreDecimalUtility.java | 55 --
.../drill/exec/store/hive/HiveUtilities.java | 8 +-
contrib/storage-hive/hive-exec-shade/pom.xml | 19 -
.../templates/Decimal/CastVarDecimalDecimal.java | 6 +-
.../exec/expr/ExpressionTreeMaterializer.java | 43 +-
.../drill/exec/physical/impl/join/JoinUtils.java | 6 +-
.../sql/DrillCalciteSqlBetweenOperatorWrapper.java | 76 +++
.../drill/exec/planner/sql/DrillOperatorTable.java | 53 +-
.../drill/exec/planner/sql/TypeInferenceUtils.java | 4 +-
.../org/apache/drill/exec/rpc/BitRpcUtility.java | 18 +
.../rpc/control/ConnectionManagerRegistry.java | 6 +-
.../exec/rpc/control/ControlConnectionConfig.java | 9 +-
.../exec/rpc/control/ControlConnectionManager.java | 16 +-
.../drill/exec/rpc/control/ControlTunnel.java | 162 +++--
.../rpc/control/LocalControlConnectionManager.java | 236 ++++++++
...er.java => RemoteControlConnectionManager.java} | 26 +-
.../org/apache/drill/exec/rpc/data/DataTunnel.java | 25 +-
.../exec/store/easy/json/JsonRecordWriter.java | 4 +-
.../store/parquet/AbstractParquetGroupScan.java | 3 +-
.../exec/store/parquet/ParquetFilterBuilder.java | 19 +-
.../exec/store/parquet/ParquetRecordWriter.java | 3 +-
.../columnreaders/ParquetToDrillTypeConverter.java | 4 +-
.../exec/store/parquet/metadata/Metadata.java | 10 +-
.../exec/work/batch/ControlMessageHandler.java | 51 +-
.../drill/exec/work/foreman/FragmentsRunner.java | 105 +---
.../exec/work/fragment/FragmentStatusReporter.java | 15 +-
.../rest/static/js/ace-code-editor/mode-sql.js | 4 +-
.../drill/TestFunctionsWithTypeExpoQueries.java | 103 +++-
.../rpc/control/ConnectionManagerRegistryTest.java | 149 +++++
.../control/TestLocalControlConnectionManager.java | 278 +++++++++
.../rpc/user/security/TestUserBitKerberos.java | 36 +-
.../store/parquet/TestParquetFilterPushDown.java | 22 +-
.../work/fragment/FragmentStatusReporterTest.java | 73 +--
.../apache/drill/exec/rpc/FutureBitCommand.java | 20 +-
.../apache/drill/exec/rpc/ListeningCommand.java | 33 +-
.../drill/exec/rpc/ReconnectingConnection.java | 16 +-
.../java/org/apache/drill/exec/rpc/RpcCommand.java | 13 +-
.../main/codegen/templates/ColumnAccessors.java | 14 +-
.../main/codegen/templates/FixedValueVectors.java | 2 +-
.../org/apache/drill/exec/util/DecimalUtility.java | 672 ++++-----------------
.../drill/exec/vector/ValueHolderHelper.java | 8 +-
.../drill/common/expression/ValueExpressions.java | 21 +-
.../apache/drill/common/logical/data/Sequence.java | 192 ------
.../data/visitors/AbstractLogicalVisitor.java | 6 -
.../logical/data/visitors/LogicalVisitor.java | 3 -
pom.xml | 4 +-
47 files changed, 1397 insertions(+), 1360 deletions(-)
delete mode 100644
common/src/main/java/org/apache/drill/common/util/CoreDecimalUtility.java
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/DrillCalciteSqlBetweenOperatorWrapper.java
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/rpc/control/LocalControlConnectionManager.java
copy
exec/java-exec/src/main/java/org/apache/drill/exec/rpc/control/{ControlConnectionManager.java
=> RemoteControlConnectionManager.java} (57%)
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/rpc/control/ConnectionManagerRegistryTest.java
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/rpc/control/TestLocalControlConnectionManager.java
delete mode 100644
logical/src/main/java/org/apache/drill/common/logical/data/Sequence.java
--
To stop receiving notification emails like this one, please contact
[email protected].