This is an automated email from the ASF dual-hosted git repository. yangzhg pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.
from 2f90aaa [Doc] flink/spark connector: add sources/javadoc plugins (#6435) add 8738ce3 Add long text type STRING, with a maximum length of 2GB. Usage is similar to varchar, and there is no guarantee for the performance of storing extremely long data (#6391) No new revisions were added by this update. Summary of changes: be/CMakeLists.txt | 17 +- be/src/exec/es/es_predicate.cpp | 5 +- be/src/exec/es/es_scroll_parser.cpp | 3 +- be/src/exec/es_scan_node.cpp | 6 +- be/src/exec/merge_join_node.cpp | 1 + be/src/exec/odbc_connector.cpp | 5 +- be/src/exec/olap_rewrite_node.cpp | 12 +- be/src/exec/olap_scan_node.cpp | 9 +- be/src/exec/olap_scanner.cpp | 3 +- be/src/exec/olap_utils.h | 1 + be/src/exec/parquet_writer.cpp | 3 +- be/src/exec/partitioned_hash_table.cc | 2 +- .../exec/schema_scanner/schema_columns_scanner.cpp | 9 +- be/src/exec/tablet_sink.cpp | 15 +- be/src/exec/text_converter.hpp | 3 +- be/src/exprs/agg_fn_evaluator.cpp | 8 +- be/src/exprs/anyval_util.cpp | 5 + be/src/exprs/anyval_util.h | 3 + be/src/exprs/binary_predicate.cpp | 7 + be/src/exprs/bloomfilter_predicate.cpp | 2 + be/src/exprs/case_expr.cpp | 2 + be/src/exprs/expr.cpp | 8 +- be/src/exprs/expr_context.cpp | 3 +- be/src/exprs/hybrid_set.cpp | 1 + be/src/exprs/literal.cpp | 1 + be/src/exprs/new_agg_fn_evaluator.cc | 5 +- be/src/exprs/runtime_filter.cpp | 16 +- be/src/olap/aggregate_func.cpp | 5 + be/src/olap/aggregate_func.h | 24 + be/src/olap/column_vector.cpp | 4 + be/src/olap/delete_handler.cpp | 1 + be/src/olap/field.h | 153 ++++-- be/src/olap/key_coder.cpp | 1 + be/src/olap/key_coder.h | 29 ++ be/src/olap/olap_common.h | 20 +- be/src/olap/olap_define.h | 10 +- be/src/olap/olap_index.cpp | 33 +- be/src/olap/push_handler.cpp | 49 +- be/src/olap/reader.cpp | 8 +- be/src/olap/row_block.cpp | 2 +- be/src/olap/row_block2.cpp | 11 +- be/src/olap/row_block2.h | 1 + be/src/olap/row_cursor.cpp | 70 ++- be/src/olap/row_cursor.h | 7 +- be/src/olap/rowset/column_data.cpp | 2 +- be/src/olap/rowset/column_reader.cpp | 3 +- be/src/olap/rowset/column_reader.h | 3 +- be/src/olap/rowset/column_writer.cpp | 6 +- be/src/olap/rowset/segment_group.cpp | 4 +- be/src/olap/rowset/segment_v2/binary_dict_page.cpp | 1 + .../olap/rowset/segment_v2/bitmap_index_writer.cpp | 3 + .../segment_v2/bloom_filter_index_writer.cpp | 5 +- be/src/olap/rowset/segment_v2/column_reader.cpp | 3 +- be/src/olap/rowset/segment_v2/encoding_info.cpp | 4 + be/src/olap/schema.h | 2 + be/src/olap/schema_change.cpp | 28 +- be/src/olap/stream_index_common.cpp | 3 +- be/src/olap/tablet_meta.cpp | 3 +- be/src/olap/tablet_schema.cpp | 7 + be/src/olap/types.cpp | 2 + be/src/olap/types.h | 87 +++- be/src/olap/wrapper_field.cpp | 17 +- be/src/runtime/dpp_sink.cpp | 5 +- be/src/runtime/dpp_writer.cpp | 1 + be/src/runtime/export_sink.cpp | 3 +- be/src/runtime/file_result_writer.cpp | 3 +- be/src/runtime/fold_constant_mgr.cpp | 1 + be/src/runtime/mysql_result_writer.cpp | 3 +- be/src/runtime/mysql_table_writer.cpp | 3 +- be/src/runtime/primitive_type.cpp | 13 + be/src/runtime/primitive_type.h | 39 +- be/src/runtime/raw_value.cpp | 13 +- be/src/runtime/raw_value.h | 11 +- be/src/runtime/raw_value_ir.cpp | 1 + be/src/runtime/types.h | 16 +- be/src/runtime/vectorized_row_batch.cpp | 4 +- be/src/service/CMakeLists.txt | 23 +- be/src/util/arrow/row_batch.cpp | 4 +- be/src/util/symbols_util.cpp | 1 + be/test/olap/column_reader_test.cpp | 566 ++++++++++++++------- be/test/olap/row_cursor_test.cpp | 6 +- docs/.vuepress/sidebar/en.js | 1 + docs/.vuepress/sidebar/zh-CN.js | 1 + .../Data Types/{VARCHAR.md => STRING.md} | 10 +- .../sql-statements/Data Types/VARCHAR.md | 2 +- .../Data Types/{VARCHAR.md => STRING.md} | 10 +- fe/fe-core/src/main/cup/sql_parser.cup | 4 +- .../java/org/apache/doris/alter/AlterOpType.java | 2 +- .../org/apache/doris/analysis/BinaryPredicate.java | 9 +- .../java/org/apache/doris/analysis/ColumnDef.java | 1 + .../org/apache/doris/analysis/OutFileClause.java | 4 +- .../java/org/apache/doris/analysis/TypeDef.java | 4 +- .../java/org/apache/doris/catalog/ColumnType.java | 10 + .../java/org/apache/doris/catalog/Function.java | 2 + .../org/apache/doris/catalog/PrimitiveType.java | 67 ++- .../org/apache/doris/catalog/ScalarFunction.java | 1 + .../java/org/apache/doris/catalog/ScalarType.java | 57 ++- .../java/org/apache/doris/catalog/SchemaTable.java | 6 - .../main/java/org/apache/doris/catalog/Type.java | 43 +- .../java/org/apache/doris/common/util/Util.java | 1 + .../java/org/apache/doris/httpv2/HttpServer.java | 1 + .../org/apache/doris/planner/OlapScanNode.java | 2 +- .../org/apache/doris/qe/cache/PartitionRange.java | 1 + fe/fe-core/src/main/resources/doris-logo.png | Bin 0 -> 3304 bytes gensrc/proto/internal_service.proto | 1 + gensrc/thrift/Types.thrift | 3 +- 106 files changed, 1287 insertions(+), 438 deletions(-) copy docs/en/sql-reference/sql-statements/Data Types/{VARCHAR.md => STRING.md} (85%) copy docs/zh-CN/sql-reference/sql-statements/Data Types/{VARCHAR.md => STRING.md} (86%) create mode 100644 fe/fe-core/src/main/resources/doris-logo.png --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org