Skip to content

Commit

Permalink
[fix](case)fix acid regression case. (#45999)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

Problem Summary:
just fix error case.
  • Loading branch information
hubgeter authored Dec 26, 2024
1 parent df8bc8f commit f951c6a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@ suite("test_transactional_hive", "p0,external,hive,external_docker,external_dock

def test_acid = {
try {
sql """SET enable_fallback_to_original_planner=false;"""
sql """ select * from orc_to_acid_tb """
}catch( Exception e) {
assertTrue(e.getMessage().contains("For no acid table convert to acid, please COMPACT"));
logger.info("e.getMessage()" + e.getMessage())
assertTrue(e.getMessage().contains("Original non-ACID files in transactional tables are not supported"));
}

qt_2 """ select * from orc_to_acid_compacted_tb order by id """
Expand Down

0 comments on commit f951c6a

Please sign in to comment.