Skip to content

Commit

Permalink
[fix](case)fix acid regression case. (apache#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 committed Jan 6, 2025
1 parent 865d8fa commit 3c3adda
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 3c3adda

Please sign in to comment.