You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
Reproduce:
createtablet1 (id int, b int, unique index (id));
createtablet2 (id int, b int, unique index (id));
insert into t1 values (1,1);
insert into t2 values (1,1);
then run:
select t1.*,t2.*from t1 left join t2 ont1.id=t2.idwheret1.id=1; -- This maybe panic occasionally.
2. What did you expect to see? (Required)
3. What did you see instead (Required)
In release-4.0 branch, hash: df16c56c51fbc6710431ff1ee7bbac23c610e924, the panic stack is below:
[2020/08/0415:41:52.688+00:00] [ERROR] [misc.go:91] ["panic in the recoverable goroutine"] [r="\"assignmenttoentryinnilmap\""] ["stack trace"="github.com/pingcap/tidb/util.WithRecovery.func1/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/util/misc.go:93runtime.gopanic/usr/local/go/src/runtime/panic.go:679runtime.mapassign/usr/local/go/src/runtime/map.go:576github.com/pingcap/tidb/store/tikv.(*tikvSnapshot).mergeRegionRequestStats/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/store/tikv/snapshot.go:597github.com/pingcap/tidb/store/tikv.(*tikvSnapshot).get.func2/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/store/tikv/snapshot.go:369github.com/pingcap/tidb/store/tikv.(*tikvSnapshot).get/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/store/tikv/snapshot.go:424github.com/pingcap/tidb/store/tikv.(*tikvSnapshot).Get/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/store/tikv/snapshot.go:326github.com/pingcap/tidb/executor.(*PointGetExecutor).get/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/executor/point_get.go:319github.com/pingcap/tidb/executor.(*PointGetExecutor).getAndLock/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/executor/point_get.go:264github.com/pingcap/tidb/executor.(*PointGetExecutor).Next/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/executor/point_get.go:219github.com/pingcap/tidb/executor.Next/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/executor/executor.go:250github.com/pingcap/tidb/executor.(*HashJoinExec).fetchProbeSideChunks/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/executor/join.go:203github.com/pingcap/tidb/executor.(*HashJoinExec).fetchAndProbeHashTable.func1/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/executor/join.go:316github.com/pingcap/tidb/util.WithRecovery/home/jenkins/agent/workspace/tidb_release-4.0/go/src/github.com/pingcap/tidb/util/misc.go:96"]
4. Affected version (Required)
Master & latest release 4.0
5. Root Cause Analysis
The text was updated successfully, but these errors were encountered:
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
Reproduce:
then run:
2. What did you expect to see? (Required)
3. What did you see instead (Required)
In release-4.0 branch, hash:
df16c56c51fbc6710431ff1ee7bbac23c610e924
, the panic stack is below:4. Affected version (Required)
Master & latest release 4.0
5. Root Cause Analysis
The text was updated successfully, but these errors were encountered: