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 f88a73c DRILL-6705: Fix various failures in Crypto / Network /
Phonetic functions when invalid input is given
new 2bb0294 DRILL-6733: Unit tests from KafkaFilterPushdownTest are
failing in some environments.
new c6df1d0 DRILL-6732: Queries are runnable on disable plugins (#1460)
new 12af476 DRILL-6544: Allow timestamp / date / time formatting when
displaying on Web UI
new b28355c DRILL-1248: Allow positional / named aliases in group by /
having clauses
The 4 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:
.../drill/exec/store/kafka/KafkaTestBase.java | 4 +-
.../org/apache/calcite/jdbc/DynamicRootSchema.java | 2 +-
.../java/org/apache/drill/exec/ExecConstants.java | 22 ++++
.../drill/exec/planner/sql/DrillConformance.java | 25 +++-
.../exec/server/options/SystemOptionManager.java | 3 +
.../drill/exec/server/options/TypeValidators.java | 26 ++++
.../drill/exec/server/rest/WebUserConnection.java | 6 +-
.../exec/store/StoragePluginRegistryImpl.java | 1 +
.../exec/util/ValueVectorElementFormatter.java | 121 +++++++++++++++++
.../java-exec/src/main/resources/drill-module.conf | 3 +
.../drill/exec/fn/impl/TestAggregateFunctions.java | 4 +-
.../org/apache/drill/exec/sql/TestConformance.java | 68 ++++++++--
.../drill/exec/store/store/TestDisabledPlugin.java | 80 ++++++++++++
.../exec/util/TestValueVectorElementFormatter.java | 145 +++++++++++++++++++++
.../java/org/apache/drill/test/ClusterFixture.java | 1 +
.../drill/test/ClusterMockStorageFixture.java | 1 +
pom.xml | 2 +-
17 files changed, 496 insertions(+), 18 deletions(-)
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/util/ValueVectorElementFormatter.java
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/store/store/TestDisabledPlugin.java
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/util/TestValueVectorElementFormatter.java