This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from a2c9ed7be8 [Chore](build) fix some undefined behavior about incomplete type vector #19753 add 294599ee45 [feature](jsonb) rename JSONB type name and function name to JSON (#19774) No new revisions were added by this update. Summary of changes: be/src/vec/functions/function_jsonb.cpp | 77 +++- be/test/vec/function/function_jsonb_test.cpp | 70 ++-- .../{jsonb_exists_path.md => json_exists_path.md} | 12 +- .../sql-functions/json-functions/json_extract.md | 61 ++- .../{jsonb_parse.md => json_parse.md} | 36 +- .../json-functions/{jsonb_type.md => json_type.md} | 12 +- .../sql-functions/json-functions/jsonb_extract.md | 93 ----- .../sql-reference/Data-Types/{JSONB.md => JSON.md} | 138 +++---- docs/sidebars.json | 19 +- .../{jsonb_exists_path.md => json_exists_path.md} | 12 +- .../sql-functions/json-functions/json_extract.md | 41 +- .../{jsonb_parse.md => json_parse.md} | 34 +- .../json-functions/{jsonb_type.md => json_type.md} | 8 +- .../sql-functions/json-functions/jsonb_extract.md | 71 ---- .../sql-reference/Data-Types/{JSONB.md => JSON.md} | 138 +++---- .../org/apache/doris/catalog/PrimitiveType.java | 2 +- .../java/org/apache/doris/catalog/ScalarType.java | 6 +- fe/fe-core/src/main/cup/sql_parser.cup | 5 + .../java/org/apache/doris/common/util/Util.java | 2 +- .../org/apache/doris/external/jdbc/JdbcClient.java | 2 +- fe/fe-core/src/main/jflex/sql_scanner.flex | 1 + gensrc/script/doris_builtins_functions.py | 34 +- .../test_jsonb.csv => json_p0/test_json.csv} | 0 .../test_json_load_and_function.out} | 0 .../test_json_load_unique_key_and_function.out} | 0 .../test_json_unique_key.csv} | 0 .../data/types/test_show_data_types.out | 2 +- .../json_p0/test_json_load_and_function.groovy | 437 +++++++++++++++++++++ .../test_json_load_unique_key_and_function.groovy | 406 +++++++++++++++++++ 29 files changed, 1280 insertions(+), 439 deletions(-) rename docs/en/docs/sql-manual/sql-functions/json-functions/{jsonb_exists_path.md => json_exists_path.md} (76%) rename docs/en/docs/sql-manual/sql-functions/json-functions/{jsonb_parse.md => json_parse.md} (64%) rename docs/en/docs/sql-manual/sql-functions/json-functions/{jsonb_type.md => json_type.md} (78%) delete mode 100644 docs/en/docs/sql-manual/sql-functions/json-functions/jsonb_extract.md rename docs/en/docs/sql-manual/sql-reference/Data-Types/{JSONB.md => JSON.md} (93%) rename docs/zh-CN/docs/sql-manual/sql-functions/json-functions/{jsonb_exists_path.md => json_exists_path.md} (73%) rename docs/zh-CN/docs/sql-manual/sql-functions/json-functions/{jsonb_parse.md => json_parse.md} (65%) rename docs/zh-CN/docs/sql-manual/sql-functions/json-functions/{jsonb_type.md => json_type.md} (87%) delete mode 100644 docs/zh-CN/docs/sql-manual/sql-functions/json-functions/jsonb_extract.md rename docs/zh-CN/docs/sql-manual/sql-reference/Data-Types/{JSONB.md => JSON.md} (93%) copy regression-test/data/{jsonb_p0/test_jsonb.csv => json_p0/test_json.csv} (100%) copy regression-test/data/{jsonb_p0/test_jsonb_load_and_function.out => json_p0/test_json_load_and_function.out} (100%) copy regression-test/data/{jsonb_p0/test_jsonb_load_unique_key_and_function.out => json_p0/test_json_load_unique_key_and_function.out} (100%) copy regression-test/data/{jsonb_p0/test_jsonb_unique_key.csv => json_p0/test_json_unique_key.csv} (100%) create mode 100644 regression-test/suites/json_p0/test_json_load_and_function.groovy create mode 100644 regression-test/suites/json_p0/test_json_load_unique_key_and_function.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org