Skip to content

Commit

Permalink
fix regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
seawinde committed Sep 11, 2024
1 parent c1e37d6 commit 4d16e1b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ suite("test_enable_date_non_deterministic_function_mtmv","mtmv") {
Assert.fail();
} catch (Exception e) {
logger.info(e.getMessage())
assertTrue(e.getMessage().contains("can not contain invalid expression"));
assertTrue(e.getMessage().contains("can not contain nonDeterministic expression"));
}
sql """drop materialized view if exists ${mvName};"""

Expand All @@ -75,7 +75,7 @@ suite("test_enable_date_non_deterministic_function_mtmv","mtmv") {
Assert.fail();
} catch (Exception e) {
logger.info(e.getMessage())
assertTrue(e.getMessage().contains("can not contain invalid expression"));
assertTrue(e.getMessage().contains("can not contain nonDeterministic expression"));
}
sql """drop materialized view if exists ${mvName};"""

Expand Down Expand Up @@ -128,7 +128,7 @@ suite("test_enable_date_non_deterministic_function_mtmv","mtmv") {
Assert.fail();
} catch (Exception e) {
logger.info(e.getMessage())
assertTrue(e.getMessage().contains("can not contain invalid expression"));
assertTrue(e.getMessage().contains("can not contain nonDeterministic expression"));
}

sql """drop table if exists `${tableName}`"""
Expand Down

0 comments on commit 4d16e1b

Please sign in to comment.