Skip to content

Commit

Permalink
5
Browse files Browse the repository at this point in the history
  • Loading branch information
shuke987 committed Jan 11, 2025
1 parent a735c8a commit 66d5d59
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,12 @@ suite('test_manager_interface_1',"p0") {
futures.add( thread {
sleep(1500)

result = sql """
select a.*, b.*, c.NAME as WORKLOAD_GROUP_NAME from information_schema.active_queries a left join
information_schema.backend_active_tasks b on a.QUERY_ID = b.QUERY_ID left join information_schema.workload_groups c on a.WORKLOAD_GROUP_ID = c.ID
"""
logger.info("result = ${result}")

result = sql_return_maparray """
select a.*, b.*, c.NAME as WORKLOAD_GROUP_NAME from information_schema.active_queries a left join
information_schema.backend_active_tasks b on a.QUERY_ID = b.QUERY_ID left join information_schema.workload_groups c on a.WORKLOAD_GROUP_ID = c.ID
Expand Down

0 comments on commit 66d5d59

Please sign in to comment.