Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
seawinde committed Jan 9, 2025
1 parent 9e61ee8 commit 307d29a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,7 @@ suite("mv_with_date_trunc") {
logger.info("lineitem table stats: " + result)
result = sql """show index stats lineitem lineitem"""
logger.info("lineitem index stats: " + result)
mv_rewrite_success(query4_0, "mv4_0")
mv_rewrite_success_without_check_chosen(query4_0, "mv4_0")
order_qt_query4_0_after "${query4_0}"
sql """ DROP MATERIALIZED VIEW IF EXISTS mv4_0"""

Expand Down Expand Up @@ -1502,7 +1502,7 @@ suite("mv_with_date_trunc") {
result = sql """show index stats lineitem lineitem"""
logger.info("lineitem index stats: " + result)
// should success because as datetime would be datetime(6)
async_mv_rewrite_success(db, mv5_0, query5_0, "mv5_0")
mv_rewrite_success_without_check_chosen(db, mv5_0, query5_0, "mv5_0")
order_qt_query5_0_after "${query5_0}"
sql """ DROP MATERIALIZED VIEW IF EXISTS mv5_0"""

Expand Down Expand Up @@ -1572,7 +1572,7 @@ suite("mv_with_date_trunc") {
result = sql """show index stats lineitem lineitem"""
logger.info("lineitem index stats: " + result)
// data is not valid
async_mv_rewrite_success(db, mv5_3, query5_3, "mv5_3")
mv_rewrite_success_without_check_chosen(db, mv5_3, query5_3, "mv5_3")
order_qt_query5_3_after "${query5_3}"
sql """ DROP MATERIALIZED VIEW IF EXISTS mv5_3"""
}
Expand Down

0 comments on commit 307d29a

Please sign in to comment.