Skip to content

Commit

Permalink
remove uncorrelated case
Browse files Browse the repository at this point in the history
  • Loading branch information
seawinde committed Nov 28, 2024
1 parent 3375723 commit 793bbe7
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,18 +191,5 @@ suite("with_table_operator") {
sql """
DROP MATERIALIZED VIEW IF EXISTS query_index_test on orders;
"""

// query topN should fail beacuse __DORIS_ROWID_COL__ slot can not get from materialized view
create_async_mv(db, "common_order_mv", """
select * from orders order by o_orderdate;
""")

mv_rewrite_fail("""
select * from orders order by o_orderdate limit 1;
""", "common_order_mv")

sql """
DROP MATERIALIZED VIEW IF EXISTS common_order_mv;
"""
}

0 comments on commit 793bbe7

Please sign in to comment.