Skip to content

Commit

Permalink
[test](debug) add more log in select_with_tablets to investigate
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed May 16, 2024
1 parent fe80d4f commit 62b35b1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ suite("select_with_tablets") {
logger.info("insert result: " + insert_res.toString())
order_qt_select1 """ SELECT * FROM ${table_name1} """

def res = sql_return_maparray """ show tablets from ${table_name1} where version = 2 """
def res = sql_return_maparray """ show tablets from ${table_name1}"""
res = deduplicate_tablets(res)
log.info("res: " + res.toString())

res = sql_return_maparray """ show tablets from ${table_name1} where version = 2 """
res = deduplicate_tablets(res)
log.info("res: " + res.toString())
assertEquals(res.size(), 1)
Expand Down

0 comments on commit 62b35b1

Please sign in to comment.