This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
from 720b6e3d86d [fix](nereids) forbid create table with illegal auto partition expr (#31498) (#31604) new de28d7cd2d5 [fix](Nereids): AssertNumRowsElement shouldn't be expression (#31581) new c40c16b8b39 [improve](conf)refactor fuzzy mode in BE (#31412) new e7de2ba0ac7 [refactor](raw ptr) disable some raw pointer usage and some unused code (#31595) new c72e55d867e [enhancement](core) throw exception instead of core during insert_range_from method (#31592) new 92e3b31f506 [feature](invert index) match_phrase_edge feature added (#31142) new 4a05e5a275e [fix](load) delete bytes_appended debug point which may cause bad page (#31602) new 54709ecf3b6 [improvement](plsql) Select statement supports insert into variables #31574 The 7 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/config.cpp | 31 ++--- be/src/common/config.h | 4 +- be/src/exec/olap_common.h | 2 + be/src/exec/olap_utils.h | 14 ++- be/src/io/fs/file_writer.h | 5 +- be/src/olap/data_dir.cpp | 1 - be/src/olap/data_dir.h | 1 - be/src/olap/match_predicate.cpp | 6 +- .../inverted_index/query/phrase_edge_query.cpp | 128 +++++++++++++++++++++ .../{phrase_prefix_query.h => phrase_edge_query.h} | 15 ++- .../inverted_index/query/query_factory.h | 15 +-- .../rowset/segment_v2/inverted_index_query_type.h | 7 +- .../rowset/segment_v2/inverted_index_reader.cpp | 5 +- be/src/olap/utils.h | 5 - be/src/pipeline/exec/hashjoin_probe_operator.cpp | 2 +- .../exec/nested_loop_join_probe_operator.cpp | 6 +- be/src/runtime/query_statistics.cpp | 50 +------- be/src/runtime/query_statistics.h | 36 ------ be/src/service/doris_main.cpp | 7 +- be/src/vec/columns/column_array.cpp | 12 +- be/src/vec/columns/column_decimal.cpp | 8 +- be/src/vec/columns/column_fixed_length_object.h | 3 +- be/src/vec/columns/column_map.cpp | 8 +- be/src/vec/columns/column_string.cpp | 4 +- be/src/vec/columns/column_vector.cpp | 8 +- be/src/vec/exec/join/vhash_join_node.cpp | 2 +- be/src/vec/exec/join/vnested_loop_join_node.cpp | 4 +- be/src/vec/functions/match.cpp | 1 + be/src/vec/functions/match.h | 17 +++ be/src/vec/sink/autoinc_buffer.h | 16 +-- be/src/vec/sink/vtablet_block_convertor.h | 2 +- .../antlr4/org/apache/doris/nereids/DorisLexer.g4 | 3 + .../antlr4/org/apache/doris/nereids/DorisParser.g4 | 18 ++- .../antlr4/org/apache/doris/nereids/PLLexer.g4 | 2 - .../antlr4/org/apache/doris/nereids/PLParser.g4 | 8 +- fe/fe-core/src/main/cup/sql_parser.cup | 5 +- .../org/apache/doris/analysis/MatchPredicate.java | 11 ++ .../doris/nereids/parser/LogicalPlanBuilder.java | 10 ++ .../trees/expressions/AssertNumRowsElement.java | 41 +------ .../nereids/trees/expressions/Expression.java | 3 +- .../doris/nereids/trees/expressions/Match.java | 2 + .../{BitXor.java => MatchPhraseEdge.java} | 20 ++-- .../expressions/visitor/ExpressionVisitor.java | 10 +- .../trees/plans/logical/LogicalAssertNumRows.java | 2 +- .../plans/physical/PhysicalAssertNumRows.java | 2 +- .../src/main/java/org/apache/doris/plsql/Stmt.java | 49 ++++++-- fe/fe-core/src/main/jflex/sql_scanner.flex | 1 + gensrc/thrift/Opcodes.thrift | 1 + .../test_index_match_phrase_edge.out | 31 +++++ .../test_load_stream_fault_injection.groovy | 2 - .../test_index_match_phrase_edge.groovy | 69 +++++++++++ 51 files changed, 469 insertions(+), 246 deletions(-) create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query/phrase_edge_query.cpp copy be/src/olap/rowset/segment_v2/inverted_index/query/{phrase_prefix_query.h => phrase_edge_query.h} (70%) copy fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/{BitXor.java => MatchPhraseEdge.java} (71%) create mode 100644 regression-test/data/inverted_index_p0/test_index_match_phrase_edge.out create mode 100644 regression-test/suites/inverted_index_p0/test_index_match_phrase_edge.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org