Skip to content

Commit

Permalink
[fix](case) fix variant p2 (#48727)
Browse files Browse the repository at this point in the history
  • Loading branch information
csun5285 authored Mar 6, 2025
1 parent b6719e9 commit 4296e11
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ suite("regression_test_variant_github_events_p2", "nonConcurrent,p2"){
def table_name = "github_events"
sql """DROP TABLE IF EXISTS ${table_name}"""
table_name = "github_events"
sql """set disable_inverted_index_v1_for_variant = false;"""
sql """
CREATE TABLE IF NOT EXISTS ${table_name} (
k bigint,
Expand All @@ -67,6 +68,7 @@ suite("regression_test_variant_github_events_p2", "nonConcurrent,p2"){
DISTRIBUTED BY HASH(k) BUCKETS 4
properties("replication_num" = "1", "disable_auto_compaction" = "false");
"""
sql """set disable_inverted_index_v1_for_variant = true;"""

sql """DROP TABLE IF EXISTS github_events_arr"""
sql """
Expand Down

0 comments on commit 4296e11

Please sign in to comment.