Skip to content

Commit

Permalink
fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
feiniaofeiafei committed Dec 12, 2024
1 parent 5aa17ad commit e798aac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
// under the License.

suite("distinct_split") {
sql "set runtime_filter_mode = OFF"
sql "drop table if exists test_distinct_multi"
sql "create table test_distinct_multi(a int, b int, c int, d varchar(10), e date) distributed by hash(a) properties('replication_num'='1');"
sql "insert into test_distinct_multi values(1,2,3,'abc','2024-01-02'),(1,2,4,'abc','2024-01-03'),(2,2,4,'abcd','2024-01-02'),(1,2,3,'abcd','2024-01-04'),(1,2,4,'eee','2024-02-02'),(2,2,4,'abc','2024-01-02');"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ suite("partition_mv_rewrite_dimension_1") {
count(*)
from orders_1
"""
mv_rewrite_success(agg_sql_1, agg_mv_name_1)
mv_rewrite_fail(agg_sql_1, agg_mv_name_1)
compare_res(agg_sql_1 + " order by 1,2,3,4,5,6")
sql """DROP MATERIALIZED VIEW IF EXISTS ${agg_mv_name_1};"""

Expand Down

0 comments on commit e798aac

Please sign in to comment.