Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[regression-test](cases) remove 3 cases not suitable for cloud #47553

Merged
merged 2 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as th
"test_topn_fault_injection," +
"auto_partition_in_partition_prune," + // inserted data in too many tablets, txn to large. not suitable for cloud.
"one_col_range_partition," + // inserted data in too many tablets, txn to large. not suitable for cloud.
"shuffle_left_join,colocate_union_numbers,prune_bucket_with_bucket_shuffle_join,", // this feature is not picked to branch-3.0
"zzz_the_end_sentinel_do_not_touch" // keep this line as the last line

excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line as the first line
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("auto_partition") {
suite("auto_partition_in_partition_prune") {
sql "drop table if exists one_col_range_partition_date_func"
sql """create table one_col_range_partition_date_func (a int, dt datetime not null, d date, c varchar(100)) duplicate key(a)
auto partition by range(date_trunc(dt,'day')) () distributed by hash(a) properties("replication_num"="1");"""
Expand Down
Loading