This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from cac5e155dab [test](mtmv)add create partition and partition scrolling (#42402) add 3fad9ed17c3 [test](auth) Add call auth module case (#42345) No new revisions were added by this update. Summary of changes: .../data/auth_call/multi_load_data_1.csv | 3 + .../data/auth_call/multi_load_data_2.csv | 2 + .../routine_load_data.csv} | 0 .../data/auth_call/stream_load_data.csv | 3 + .../org/apache/doris/regression/suite/Suite.groovy | 22 ++ .../suites/auth_call/data/multi_table_csv.csv | 2 + .../ddl/test_dml_multi_routine_load_auth_tb1.sql | 46 ++++ .../ddl/test_dml_multi_routine_load_auth_tb2.sql | 46 ++++ .../test_account_management_grant_auth.groovy | 100 ++++++++ .../test_account_management_role_auth.groovy | 73 ++++++ .../test_account_management_user_auth.groovy | 99 ++++++++ .../auth_call/test_assistant_command_auth.groovy | 96 ++++++++ .../auth_call/test_cluster_management_auth.groovy | 138 +++++++++++ .../auth_call/test_database_management_auth.groovy | 143 +++++++++++ .../suites/auth_call/test_ddl_backup_auth.groovy | 126 ++++++++++ .../suites/auth_call/test_ddl_catalog_auth.groovy | 113 +++++++++ .../auth_call/test_ddl_colocate_group_auth.groovy | 67 ++++++ .../suites/auth_call/test_ddl_database_auth.groovy | 103 ++++++++ .../auth_call/test_ddl_encryptkey_auth.groovy | 72 ++++++ .../suites/auth_call/test_ddl_file_auth.groovy | 89 +++++++ .../suites/auth_call/test_ddl_function_auth.groovy | 87 +++++++ .../suites/auth_call/test_ddl_index_auth.groovy | 126 ++++++++++ .../suites/auth_call/test_ddl_job_auth.groovy | 99 ++++++++ .../auth_call/test_ddl_mask_view_auth.groovy | 74 ++++++ .../suites/auth_call/test_ddl_mtmv_auth.groovy | 189 +++++++++++++++ .../suites/auth_call/test_ddl_mv_auth.groovy | 117 +++++++++ .../auth_call/test_ddl_part_table_auth.groovy | 80 ++++++ .../auth_call/test_ddl_policy_storage_auth.groovy | 96 ++++++++ .../auth_call/test_ddl_repository_auth.groovy | 93 +++++++ .../suites/auth_call/test_ddl_resource_auth.groovy | 97 ++++++++ .../suites/auth_call/test_ddl_restore_auth.groovy | 181 ++++++++++++++ .../auth_call/test_ddl_row_policy_auth.groovy | 90 +++++++ .../auth_call/test_ddl_sql_block_rule_auth.groovy | 102 ++++++++ .../suites/auth_call/test_ddl_table_auth.groovy | 267 +++++++++++++++++++++ .../suites/auth_call/test_ddl_view_auth.groovy | 154 ++++++++++++ .../auth_call/test_ddl_workload_group_auth.groovy | 86 +++++++ .../suites/auth_call/test_dml_analyze_auth.groovy | 93 +++++++ .../auth_call/test_dml_broker_load_auth.groovy | 180 ++++++++++++++ .../auth_call/test_dml_cancel_profile_auth.groovy | 54 +++++ .../auth_call/test_dml_delete_table_auth.groovy | 151 ++++++++++++ .../auth_call/test_dml_export_table_auth.groovy | 132 ++++++++++ .../suites/auth_call/test_dml_insert_auth.groovy | 121 ++++++++++ .../test_dml_multi_routine_load_auth.groovy | 160 ++++++++++++ .../auth_call/test_dml_mysql_load_auth.groovy | 84 +++++++ .../suites/auth_call/test_dml_outfile_auth.groovy | 92 +++++++ .../auth_call/test_dml_routine_load_auth.groovy | 153 ++++++++++++ .../auth_call/test_dml_select_udf_auth.groovy | 77 ++++++ .../auth_call/test_dml_stream_load_auth.groovy | 115 +++++++++ .../auth_call/test_dml_update_table_auth.groovy | 81 +++++++ .../auth_call/test_hive_base_case_auth.groovy | 200 +++++++++++++++ .../suites/auth_call/test_show_backend_auth.groovy | 49 ++++ .../suites/auth_call/test_show_broker_auth.groovy | 48 ++++ .../suites/auth_call/test_show_charset_auth.groovy | 79 ++++++ .../test_show_convert_light_sc_auth.groovy | 48 ++++ .../auth_call/test_show_create_table_auth.groovy | 92 +++++++ .../suites/auth_call/test_show_data_auth.groovy | 89 +++++++ .../auth_call/test_show_database_id_auth.groovy | 63 +++++ .../auth_call/test_show_dynamic_table_auth.groovy | 67 ++++++ .../auth_call/test_show_frontend_auth.groovy | 55 +++++ .../suites/auth_call/test_show_grant_auth.groovy | 56 +++++ .../suites/auth_call/test_show_proc_auth.groovy | 48 ++++ .../auth_call/test_show_query_stats_auth.groovy | 43 ++++ .../auth_call/test_show_repository_auth.groovy | 75 ++++++ .../suites/auth_call/test_show_tablet_auth.groovy | 91 +++++++ .../auth_call/test_show_typecast_auth.groovy | 42 ++++ 65 files changed, 5919 insertions(+) create mode 100644 regression-test/data/auth_call/multi_load_data_1.csv create mode 100644 regression-test/data/auth_call/multi_load_data_2.csv copy regression-test/data/{ddl_p0/test_create_table_generated_column/gen_col_data.csv => auth_call/routine_load_data.csv} (100%) create mode 100644 regression-test/data/auth_call/stream_load_data.csv create mode 100644 regression-test/suites/auth_call/data/multi_table_csv.csv create mode 100644 regression-test/suites/auth_call/ddl/test_dml_multi_routine_load_auth_tb1.sql create mode 100644 regression-test/suites/auth_call/ddl/test_dml_multi_routine_load_auth_tb2.sql create mode 100644 regression-test/suites/auth_call/test_account_management_grant_auth.groovy create mode 100644 regression-test/suites/auth_call/test_account_management_role_auth.groovy create mode 100644 regression-test/suites/auth_call/test_account_management_user_auth.groovy create mode 100644 regression-test/suites/auth_call/test_assistant_command_auth.groovy create mode 100644 regression-test/suites/auth_call/test_cluster_management_auth.groovy create mode 100644 regression-test/suites/auth_call/test_database_management_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_backup_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_catalog_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_colocate_group_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_database_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_encryptkey_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_file_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_function_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_index_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_job_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_mask_view_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_mtmv_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_mv_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_part_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_policy_storage_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_repository_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_resource_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_restore_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_row_policy_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_sql_block_rule_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_view_auth.groovy create mode 100644 regression-test/suites/auth_call/test_ddl_workload_group_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_analyze_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_broker_load_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_cancel_profile_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_delete_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_export_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_insert_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_multi_routine_load_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_mysql_load_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_outfile_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_routine_load_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_select_udf_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_stream_load_auth.groovy create mode 100644 regression-test/suites/auth_call/test_dml_update_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_hive_base_case_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_backend_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_broker_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_charset_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_convert_light_sc_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_create_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_data_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_database_id_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_dynamic_table_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_frontend_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_grant_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_proc_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_query_stats_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_repository_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_tablet_auth.groovy create mode 100644 regression-test/suites/auth_call/test_show_typecast_auth.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org