You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ca...@apache.org on 2021/08/24 14:31:12 UTC

[incubator-doris] branch master updated (146060d -> 7e30b28)

This is an automated email from the ASF dual-hosted git repository.

caiconghui pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.


    from 146060d  [Bug]Fix result_writer may coredump (#6482)
     add 7e30b28  [Optimize] Speed up converting the data of other types to string in mysql_result_writer (#6384)

No new revisions were added by this update.

Summary of changes:
 be/CMakeLists.txt                                  |   1 +
 be/src/exec/odbc_connector.cpp                     |  11 +-
 be/src/exec/parquet_writer.cpp                     |  11 +-
 be/src/exprs/time_operators.cpp                    |   4 +-
 be/src/gutil/strings/numbers.cc                    |  23 +
 be/src/gutil/strings/numbers.h                     |   2 +
 be/src/runtime/datetime_value.cpp                  |  54 +-
 be/src/runtime/datetime_value.h                    |  12 +-
 be/src/runtime/decimalv2_value.cpp                 | 114 ++-
 be/src/runtime/decimalv2_value.h                   |  17 +-
 be/src/runtime/export_sink.cpp                     |   7 +-
 be/src/runtime/file_result_writer.cpp              |   6 +-
 be/src/runtime/large_int_value.h                   |   3 +
 be/src/runtime/mysql_result_writer.cpp             |  23 +-
 be/src/runtime/mysql_table_writer.cpp              |   7 +-
 be/src/runtime/raw_value.h                         |   5 +-
 be/src/service/backend_service.cpp                 |   3 -
 be/src/util/arrow/row_batch.cpp                    |   4 +-
 be/src/util/date_func.cpp                          |  30 +-
 be/src/util/date_func.h                            |   2 +-
 be/src/util/mysql_global.h                         |   6 +-
 be/src/util/mysql_row_buffer.cpp                   |  91 ++-
 be/src/util/mysql_row_buffer.h                     |   8 +
 be/test/{udf => gutil}/CMakeLists.txt              |   7 +-
 be/test/gutil/strings/numbers_test.cpp             | 140 ++++
 be/test/runtime/decimalv2_value_test.cpp           | 889 +++++++++++----------
 be/test/util/CMakeLists.txt                        |   3 +
 be/test/util/date_func_test.cpp                    |  84 ++
 .../main/java/org/apache/doris/analysis/Expr.java  |   1 +
 .../java/org/apache/doris/planner/Planner.java     |   4 +-
 30 files changed, 1002 insertions(+), 570 deletions(-)
 copy be/test/{udf => gutil}/CMakeLists.txt (85%)
 create mode 100644 be/test/gutil/strings/numbers_test.cpp
 create mode 100644 be/test/util/date_func_test.cpp

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org