Skip to content

Commit

Permalink
[test](test) fix unstable paimon test cases (apache#46381)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

The result should with `order by`
  • Loading branch information
morningman authored Jan 4, 2025
1 parent 0826537 commit 7c1b3a7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ suite("paimon_base_filesystem", "p0,external,doris,external_docker,external_dock
String txYunAk = context.config.otherConfigs.get("txYunAk")
String txYunSk = context.config.otherConfigs.get("txYunSk")

def obs = """select * from ${catalog_obs}.db1.all_table limit 1;"""
def oss = """select * from ${catalog_oss}.db1.all_table limit 1;"""
def cos = """select * from ${catalog_cos}.db1.all_table limit 1;"""
def cosn = """select * from ${catalog_cosn}.db1.all_table limit 1;"""
def obs = """select * from ${catalog_obs}.db1.all_table order by c1 limit 1;"""
def oss = """select * from ${catalog_oss}.db1.all_table order by c1 limit 1;"""
def cos = """select * from ${catalog_cos}.db1.all_table order by c1 limit 1;"""
def cosn = """select * from ${catalog_cosn}.db1.all_table order by c1 limit 1;"""

sql """drop catalog if exists ${catalog_obs};"""
sql """drop catalog if exists ${catalog_oss};"""
Expand Down

0 comments on commit 7c1b3a7

Please sign in to comment.