support dump plan replayer for prepare stmt
Open
report/customer
sig/planner
type/enhancement
- Dominant language
- Go
- Stars
- 40.5k
- Forks
- 6.2k
- PR merge metrics
- PR metrics pending
Description
## Enhancement
plan replayer is a very important tool to help locate plan problems.
But it doesn't support dump prepare stmt, for example:
```
prepare stmt1 from 'select xxx';
set @var1 = 100;
-- for now, we'are unable to dump this plan replayer of the following stmt.
execute stmt1 using @var1;
```
We can support like the following:
```
plan replayer dump execute stmt1 using @var1;
```
Contributor guide
Assessment
This issue has not been assessed yet.