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 4d45072760 [Improvement](dict) compute hash only if needed (#18058)
(#18083)
new 340a657161 [fix](insert) fix txn error reason clearly (#16997)
new 4407458af6 [feature](mysql) Support secure MySQL connection to FE
(#17138)
new f47fbe9979 [fix](memory) Fix MacOS mem_limit parse error and GC after
env Init #17528
new a58d8dea59 [fix](meta) fix catlog parameter when checking privilege of
show_create_table stmt (#17445)
new 9d6428e56f [fix](coalesce) support coalesce function for bitmap
(#17798)
The 5 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/common/daemon.cpp | 2 +-
.../runtime/stream_load/stream_load_executor.cpp | 2 +
be/src/util/mem_info.cpp | 9 +-
be/src/vec/functions/function_coalesce.cpp | 40 ++-
build.sh | 1 +
conf/mysql_ssl_default_certificate/certificate.p12 | Bin 0 -> 2533 bytes
.../main/java/org/apache/doris/common/Config.java | 19 ++
.../apache/doris/analysis/ShowCreateTableStmt.java | 4 +-
.../java/org/apache/doris/common/ErrorCode.java | 5 +-
.../org/apache/doris/mysql/DummyMysqlChannel.java | 2 +-
.../org/apache/doris/mysql/MysqlCapability.java | 11 +
.../java/org/apache/doris/mysql/MysqlChannel.java | 313 ++++++++++++++++++---
.../apache/doris/mysql/MysqlHandshakePacket.java | 3 +-
.../java/org/apache/doris/mysql/MysqlProto.java | 72 ++++-
.../org/apache/doris/mysql/MysqlSslContext.java | 277 ++++++++++++++++++
...sqlClearTextPacket.java => MysqlSslPacket.java} | 31 +-
.../java/org/apache/doris/qe/ConnectContext.java | 10 +
.../java/org/apache/doris/qe/ConnectProcessor.java | 4 +-
.../doris/mysql/MysqlHandshakePacketTest.java | 3 +-
regression-test/certificate.p12 | Bin 0 -> 2533 bytes
.../datatype_p0/bitmap/test_bitmap_coalesce.out | 8 +
.../org/apache/doris/regression/Config.groovy | 32 ++-
.../org/apache/doris/regression/suite/Suite.groovy | 1 +
regression-test/pipeline/p0/conf/fe.conf | 3 +
regression-test/pipeline/p1/conf/fe.conf | 3 +
.../pipeline/p1/conf/regression-conf.groovy | 4 +
.../datatype_p0/bitmap/test_bitmap_coalesce.groovy | 102 +++++++
.../mysql_ssl_p0/test_mysql_connection.groovy | 58 ++++
.../test_ssl_stability.groovy} | 36 +--
29 files changed, 974 insertions(+), 81 deletions(-)
create mode 100644 conf/mysql_ssl_default_certificate/certificate.p12
create mode 100644
fe/fe-core/src/main/java/org/apache/doris/mysql/MysqlSslContext.java
copy
fe/fe-core/src/main/java/org/apache/doris/mysql/{MysqlClearTextPacket.java =>
MysqlSslPacket.java} (51%)
create mode 100644 regression-test/certificate.p12
create mode 100644
regression-test/data/datatype_p0/bitmap/test_bitmap_coalesce.out
create mode 100644
regression-test/suites/datatype_p0/bitmap/test_bitmap_coalesce.groovy
create mode 100644
regression-test/suites/mysql_ssl_p0/test_mysql_connection.groovy
copy regression-test/suites/{datatype_p0/date/test_invalid_date.groovy =>
mysql_ssl_p0/test_ssl_stability.groovy} (54%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]