Open YangKeao opened 2 hours ago
The backtrace:
runtime error: slice bounds out of range [-118:]
github.com/pingcap/errors.AddStack
/home/yangkeao/go/pkg/mod/github.com/pingcap/errors@v0.11.5-0.20240318064555-6bd07397691f/errors.go:178
github.com/pingcap/errors.Trace
/home/yangkeao/go/pkg/mod/github.com/pingcap/errors@v0.11.5-0.20240318064555-6bd07397691f/juju_adaptor.go:15
github.com/pingcap/tidb/pkg/util.GetRecoverError
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/util/util.go:288
github.com/pingcap/tidb/pkg/executor/internal/exec.Next.func1
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/internal/exec/executor.go:440
runtime.gopanic
/usr/lib/go/src/runtime/panic.go:785
runtime.goPanicSliceB
/usr/lib/go/src/runtime/panic.go:155
github.com/pingcap/tidb/pkg/tablecodec.splitIndexValueForIndexValueVersion0
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/tablecodec/tablecodec.go:1800
github.com/pingcap/tidb/pkg/tablecodec.decodeIndexKvGeneral
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/tablecodec/tablecodec.go:1897
github.com/pingcap/tidb/pkg/tablecodec.DecodeIndexKVEx
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/tablecodec/tablecodec.go:983
github.com/pingcap/tidb/pkg/executor.(*memIndexReader).decodeIndexKeyValue
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/mem_reader.go:205
github.com/pingcap/tidb/pkg/executor.(*memRowsIterForIndex).Next
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/mem_reader.go:1002
github.com/pingcap/tidb/pkg/executor.(*UnionScanExec).getAddedRow
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/union_scan.go:283
github.com/pingcap/tidb/pkg/executor.(*UnionScanExec).getOneRow
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/union_scan.go:203
github.com/pingcap/tidb/pkg/executor.(*UnionScanExec).Next
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/union_scan.go:149
github.com/pingcap/tidb/pkg/executor/internal/exec.Next
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/internal/exec/executor.go:456
github.com/pingcap/tidb/pkg/executor.insertRowsFromSelect
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/insert_common.go:470
github.com/pingcap/tidb/pkg/executor.(*InsertExec).Next
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/insert.go:357
github.com/pingcap/tidb/pkg/executor/internal/exec.Next
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/internal/exec/executor.go:456
github.com/pingcap/tidb/pkg/executor.(*ExecStmt).next
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/adapter.go:1266
github.com/pingcap/tidb/pkg/executor.(*ExecStmt).handleNoDelayExecutor
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/adapter.go:1015
github.com/pingcap/tidb/pkg/executor.(*ExecStmt).handlePessimisticDML
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/adapter.go:1073
github.com/pingcap/tidb/pkg/executor.(*ExecStmt).handleNoDelay
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/adapter.go:845
github.com/pingcap/tidb/pkg/executor.(*ExecStmt).Exec
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/executor/adapter.go:611
github.com/pingcap/tidb/pkg/session.runStmt
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/session/session.go:2288
github.com/pingcap/tidb/pkg/session.(*session).ExecuteStmt
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/session/session.go:2150
github.com/pingcap/tidb/pkg/server.(*TiDBContext).ExecuteStmt
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/server/driver_tidb.go:291
github.com/pingcap/tidb/pkg/server.(*clientConn).handleStmt
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/server/conn.go:2026
github.com/pingcap/tidb/pkg/server.(*clientConn).handleQuery
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/server/conn.go:1779
github.com/pingcap/tidb/pkg/server.(*clientConn).dispatch
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/server/conn.go:1378
github.com/pingcap/tidb/pkg/server.(*clientConn).Run
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/server/conn.go:1147
github.com/pingcap/tidb/pkg/server.(*Server).onConn
/home/yangkeao/Projects/github.com/YangKeao/tidb/master/pkg/server/server.go:741
runtime.goexit
/usr/lib/go/src/runtime/asm_amd64.s:1700
Direct bisect gives me https://github.com/pingcap/tidb/pull/56203. However, I don't think they have any connections :thinking: .
Direct bisect gives me #56203. However, I don't think they have any connections 🤔 .
This bug will happen only when the select id from t1;
is running with IndexFullScan
. It's understandable the result of bisection is #56203. Now I'll add /*+ use_index(t1, b) */
and bisect again.
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
Insert successfully.
3. What did you see instead (Required)
4. What is your TiDB version? (Required)
4fded5f4384a50762547d72c0c109ef0d33ddf1e