This is an automated email from the ASF dual-hosted git repository.
gparai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from b30830a DRILL-7096: Develop vector for canonical Map<K,V>
new bd6d7b1 DRILL-7343: Add User-Agent UDFs to Drill
new 797524d DRILL-7362: COUNT(*) on JSON with outer list results in
JsonParse error
new f8bc0db DRILL-7367: Remove Server details from response headers
new 65df1fd DRILL-7369: Schema for MaprDB tables is not used for the case
when several fields are queried
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:
contrib/udfs/README.md | 56 +++++++
contrib/udfs/pom.xml | 5 +
.../apache/drill/exec/udfs/UserAgentFunctions.java | 172 +++++++++++++++++++++
.../drill/exec/udfs/TestUserAgentFunctions.java | 171 ++++++++++++++++++++
.../drill/yarn/appMaster/http/WebServer.java | 40 ++---
.../apache/drill/exec/server/rest/WebServer.java | 31 ++--
.../store/easy/json/reader/BaseJsonReader.java | 167 ++++++++++++++++++++
.../store/easy/json/reader/CountingJsonReader.java | 47 ++----
.../drill/exec/vector/complex/fn/JsonReader.java | 126 ++-------------
.../exec/vector/complex/fn/JsonReaderUtils.java | 6 +-
.../exec/store/json/TestJsonRecordReader.java | 13 ++
11 files changed, 644 insertions(+), 190 deletions(-)
create mode 100644 contrib/udfs/README.md
create mode 100644
contrib/udfs/src/main/java/org/apache/drill/exec/udfs/UserAgentFunctions.java
create mode 100644
contrib/udfs/src/test/java/org/apache/drill/exec/udfs/TestUserAgentFunctions.java
create mode 100644
exec/java-exec/src/main/java/org/apache/drill/exec/store/easy/json/reader/BaseJsonReader.java