You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by kx...@apache.org on 2023/06/21 07:20:29 UTC

[doris] branch master updated (b65b821813 -> 4d84cd8ca1)

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

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


    from b65b821813 [enhancement](pk) add bvar stating cached io (#20977)
     add 4d84cd8ca1 Revert "Revert "[Test](regression) CCR syncer thrift interface regression test (#20935)" (#20990)" (#21022)

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 regression-test/conf/regression-conf.groovy        |   6 +
 .../storage/test_dup_table_auto_inc_col.out        |   4 +-
 .../test_duplicate_table_without_keys.out          |   8 +-
 regression-test/data/ddl_p0/test_ctas.out          |   4 +-
 regression-test/data/ddl_p0/test_ctl.out           |   2 +-
 regression-test/data/ddl_p0/test_recover.out       | 224 +++----
 regression-test/data/ddl_p0/test_unicode_name.out  |   2 +-
 .../nereids_p0/show/test_array_show_create.out     |   2 +-
 .../data/query_p0/show/test_array_show_create.out  |   2 +-
 .../data/query_p0/show/test_map_show_create.out    |   2 +-
 .../data/query_p0/show/test_show_create_table.out  |   4 +-
 .../data/query_p0/show/test_struct_show_create.out |   2 +-
 regression-test/framework/pom.xml                  |  11 +
 .../org/apache/doris/regression/Config.groovy      |  67 ++-
 .../apache/doris/regression/ConfigOptions.groovy   |  40 ++
 .../apache/doris/regression/RegressionTest.groovy  |   1 -
 .../apache/doris/regression/json/BinlogData.groovy |  53 ++
 .../org/apache/doris/regression/suite/Suite.groovy |  14 +-
 .../doris/regression/suite/SuiteContext.groovy     |  32 +
 .../apache/doris/regression/suite/Syncer.groovy    | 670 +++++++++++++++++++++
 .../doris/regression/suite/SyncerContext.groovy    | 212 +++++++
 .../suite/client/BackendClientImpl.groovy          |  48 ++
 .../suite/client/FrontendClientImpl.groovy         |  40 ++
 .../doris/regression/util/SyncerUtils.groovy       | 114 ++++
 regression-test/pipeline/p0/conf/be.conf           |   1 +
 regression-test/pipeline/p0/conf/fe.conf           |   1 +
 regression-test/pipeline/p1/conf/be.conf           |   1 +
 regression-test/pipeline/p1/conf/fe.conf           |   2 +
 .../ccr_syncer_p0/test_binlog_config_change.groovy | 106 ++++
 .../suites/ccr_syncer_p0/test_get_binlog.groovy    | 140 +++++
 .../suites/ccr_syncer_p0/test_ingest_binlog.groovy | 119 ++++
 .../suites/ccr_syncer_p0/test_multi_buckets.groovy |  96 +++
 .../suites/ccr_syncer_p0/test_txn_case.groovy      | 298 +++++++++
 .../ccr_syncer_p1/test_backup_restore.groovy       |  68 +++
 run-regression-test.sh                             |  13 +
 36 files changed, 2272 insertions(+), 138 deletions(-)
 create mode 100644 regression-test/framework/src/main/groovy/org/apache/doris/regression/json/BinlogData.groovy
 create mode 100644 regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Syncer.groovy
 create mode 100644 regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/SyncerContext.groovy
 create mode 100644 regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/client/BackendClientImpl.groovy
 create mode 100644 regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/client/FrontendClientImpl.groovy
 create mode 100644 regression-test/framework/src/main/groovy/org/apache/doris/regression/util/SyncerUtils.groovy
 create mode 100644 regression-test/suites/ccr_syncer_p0/test_binlog_config_change.groovy
 create mode 100644 regression-test/suites/ccr_syncer_p0/test_get_binlog.groovy
 create mode 100644 regression-test/suites/ccr_syncer_p0/test_ingest_binlog.groovy
 create mode 100644 regression-test/suites/ccr_syncer_p0/test_multi_buckets.groovy
 create mode 100644 regression-test/suites/ccr_syncer_p0/test_txn_case.groovy
 create mode 100644 regression-test/suites/ccr_syncer_p1/test_backup_restore.groovy


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