This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
from 306e004ece [bugfix](reader) make segment_overlapping meta correct (#16828) new 82b3f05989 [improvement](jdbc) refator jdbc of copy result set by batch (#16337) new 983ef77d3f [bug](jdbc) fix jdbc can't get object of PGobject (#16496) new ca4ba80ac9 [Fix](Jdbc Catalog) jdbc catalog support to connect to doris database (#16527) 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: be/src/util/CMakeLists.txt | 1 + be/src/util/jni-util.cpp | 33 + be/src/util/jni-util.h | 1 + .../{io/fs/path.h => util/jni_native_method.cpp} | 16 +- .../jni_native_method.h} | 9 +- be/src/vec/exec/vjdbc_connector.cpp | 240 +++++- be/src/vec/exec/vjdbc_connector.h | 26 +- .../docker-compose/mysql/init/03-create-table.sql | 19 + .../org/apache/doris/external/jdbc/JdbcClient.java | 10 +- fe/java-udf/pom.xml | 6 + .../main/java/org/apache/doris/udf/FakeDriver.java | 70 -- .../org/apache/doris/udf/JNINativeMethod.java} | 6 +- .../java/org/apache/doris/udf/JdbcDataSource.java} | 25 +- .../java/org/apache/doris/udf/JdbcExecutor.java | 954 +++++++++++++++++++-- .../main/java/org/apache/doris/udf/UdfUtils.java | 2 + .../jdbc_catalog_p0/test_mysql_jdbc_catalog.out | 11 +- .../jdbc_catalog_p0/test_mysql_jdbc_catalog.groovy | 8 +- .../suites/jdbc_p0/test_jdbc_query_mysql.groovy | 3 +- .../suites/jdbc_p0/test_jdbc_query_pg.groovy | 3 +- 19 files changed, 1256 insertions(+), 187 deletions(-) copy be/src/{io/fs/path.h => util/jni_native_method.cpp} (70%) copy be/src/{runtime/row_batch_interface.hpp => util/jni_native_method.h} (84%) delete mode 100644 fe/java-udf/src/main/java/org/apache/doris/udf/FakeDriver.java copy fe/java-udf/src/{test/java/org/apache/doris/udf/ConstantOneUdf.java => main/java/org/apache/doris/udf/JNINativeMethod.java} (88%) copy fe/{fe-core/src/main/java/org/apache/doris/metric/AutoMappedMetric.java => java-udf/src/main/java/org/apache/doris/udf/JdbcDataSource.java} (57%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org