Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Mar 28, 2024
1 parent 0774113 commit c89aabe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ public class FrontendServiceImpl implements FrontendService.Iface {
private ExecuteEnv exeEnv;
// key is txn id,value is index of plan fragment instance, it's used by multi
// table request plan
private ConcurrentHashMap<Long, Integer> multiTableFragmentInstanceIdIndexMap = new ConcurrentHashMap<>(64);
private ConcurrentHashMap<Long, AtomicInteger> multiTableFragmentInstanceIdIndexMap =
new ConcurrentHashMap<>(64);

private final Map<TUniqueId, ConnectContext> proxyQueryIdToConnCtx =
new ConcurrentHashMap<>(64);
Expand Down

0 comments on commit c89aabe

Please sign in to comment.