Skip to content

Commit

Permalink
[fix](test) Fix cloud_p0/catalog_recycle_bin_p0/show.groovy failed (a…
Browse files Browse the repository at this point in the history
…pache#31727)

* In cloud mode, `getDbRunningTransInfo` is not suppoted now, we just
  return a empty map instead of thrown exception
  • Loading branch information
SWJTU-ZhangLei committed Mar 4, 2024
1 parent 08bc414 commit a47d15f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ public List<List<String>> getDbTransInfo(Long dbId, boolean running, int limit)

@Override
public Map<Long, List<Long>> getDbRunningTransInfo(long dbId) throws AnalysisException {
throw new AnalysisException(NOT_SUPPORTED_MSG);
return Maps.newHashMap();
}

@Override
Expand Down

0 comments on commit a47d15f

Please sign in to comment.