This is an automated email from the ASF dual-hosted git repository.
timothyfarkas pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from 3355c7e DRILL-6837: Missing reference for dynamically created
Javascript library
new 683610d DRILL-3610: Add TIMESTAMPADD and TIMESTAMPDIFF functions
new 4124b41 DRILL-4456: Add Hive translate UDF
new 33810df DRILL-6610: Add support for Minimum TLS restriction.
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:
contrib/native/client/src/clientlib/channel.cpp | 4 +-
contrib/native/client/src/clientlib/channel.hpp | 29 +++
contrib/native/client/src/clientlib/errmsgs.cpp | 1 +
contrib/native/client/src/clientlib/errmsgs.hpp | 3 +-
contrib/native/client/src/include/drill/common.hpp | 2 +-
.../drill/exec/expr/fn/HiveFunctionRegistry.java | 45 ++--
.../drill/exec/fn/hive/TestInbuiltHiveUDFs.java | 13 +
.../src/main/codegen/data/DateIntervalFunc.tdd | 1 +
.../IntervalNumericArithmetic.java | 20 +-
.../TimestampDiff.java | 109 ++++++++
.../drill/exec/planner/logical/DrillOptiq.java | 274 ++++++++++++---------
.../exec/planner/sql/DrillConvertletTable.java | 35 ++-
.../drill/exec/planner/sql/TypeInferenceUtils.java | 73 +++++-
.../fn/impl/TestTimestampAddDiffFunctions.java | 202 +++++++++++++++
14 files changed, 662 insertions(+), 149 deletions(-)
create mode 100644
exec/java-exec/src/main/codegen/templates/DateIntervalFunctionTemplates/TimestampDiff.java
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/fn/impl/TestTimestampAddDiffFunctions.java