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 d2645c7  DRILL-7170: Ignore uninitialized vector containers for OOM 
error messages
     new 636047d  DRILL-7357: Expose Drill Metastore data through 
information_schema
     new eac7ccc  DRILL-7174: Expose complex to Json control in the Drill C++ 
Client
     new 7535ed9  DRILL-7374: Support for IPV6 address

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:
 .../java/org/apache/drill/common/types/Types.java  |  38 ++
 .../test/java/org/apache/drill/test/DrillTest.java |   7 +-
 contrib/format-maprdb/pom.xml                      |  78 ++--
 contrib/native/client/example/querySubmitter.cpp   |  14 +-
 contrib/native/client/src/clientlib/channel.cpp    |   2 +-
 .../client/src/clientlib/drillClientImpl.cpp       |  18 +
 .../client/src/clientlib/drillClientImpl.hpp       |   1 +
 contrib/native/client/src/include/drill/common.hpp |   1 +
 contrib/native/client/src/test/CMakeLists.txt      |   2 +
 contrib/native/client/src/test/DrillClientTest.cpp |  55 +++
 .../exec/hive/TestInfoSchemaOnHiveStorage.java     |   2 +-
 .../drill/exec/store/ischema/FilterEvaluator.java  | 216 +++++++++++
 .../exec/store/ischema/InfoSchemaBatchCreator.java |  10 +-
 .../drill/exec/store/ischema/InfoSchemaConfig.java |   1 -
 .../exec/store/ischema/InfoSchemaConstants.java    | 138 +++----
 .../exec/store/ischema/InfoSchemaDrillTable.java   |   2 -
 .../drill/exec/store/ischema/InfoSchemaFilter.java |  30 +-
 .../store/ischema/InfoSchemaFilterBuilder.java     |  28 +-
 .../exec/store/ischema/InfoSchemaGroupScan.java    |  29 +-
 .../InfoSchemaPushFilterIntoRecordGenerator.java   |  25 +-
 .../store/ischema/InfoSchemaRecordGenerator.java   | 386 ++++---------------
 .../store/ischema/InfoSchemaStoragePlugin.java     |  23 +-
 .../exec/store/ischema/InfoSchemaSubScan.java      |   9 +-
 .../drill/exec/store/ischema/InfoSchemaTable.java  | 322 +++++++++-------
 .../exec/store/ischema/InfoSchemaTableType.java    |  41 +-
 .../drill/exec/store/ischema/RecordCollector.java  | 413 +++++++++++++++++++++
 .../apache/drill/exec/store/ischema/Records.java   | 285 ++++++++++++--
 .../drill/exec/store/ischema/package-info.java     |  21 --
 .../drill/exec/work/metadata/MetadataProvider.java |  17 +-
 .../test/java/org/apache/drill/exec/ExecTest.java  |   4 -
 .../org/apache/drill/exec/sql/TestInfoSchema.java  |  24 +-
 .../exec/sql/TestInfoSchemaWithMetastore.java      | 401 ++++++++++++++++++++
 .../exec/sql/TestSchemaCaseInsensitivity.java      |   5 +-
 .../org/apache/drill/exec/sql/TestViewSupport.java |   3 +-
 .../exec/work/metadata/TestMetadataProvider.java   |   8 +-
 .../jdbc/test/TestInformationSchemaColumns.java    |   2 +-
 .../org/apache/drill/jdbc/test/TestJdbcQuery.java  |   2 +
 .../components/tables/BasicTablesRequests.java     |  12 +-
 .../drill/metastore/metadata/MetadataInfo.java     |   2 +
 .../components/tables/TestBasicTablesRequests.java |   5 +-
 pom.xml                                            |  23 +-
 41 files changed, 1970 insertions(+), 735 deletions(-)
 create mode 100644 contrib/native/client/src/test/DrillClientTest.cpp
 create mode 100644 
exec/java-exec/src/main/java/org/apache/drill/exec/store/ischema/FilterEvaluator.java
 create mode 100644 
exec/java-exec/src/main/java/org/apache/drill/exec/store/ischema/RecordCollector.java
 delete mode 100644 
exec/java-exec/src/main/java/org/apache/drill/exec/store/ischema/package-info.java
 create mode 100644 
exec/java-exec/src/test/java/org/apache/drill/exec/sql/TestInfoSchemaWithMetastore.java

Reply via email to