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
Copy file name to clipboardExpand all lines: pkg/infoschema/tables.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1425,6 +1425,8 @@ var tableStatementsSummaryCols = []columnInfo{
1425
1425
{name: stmtsummary.AvgRequestUnitWriteStr, tp: mysql.TypeDouble, flag: mysql.NotNullFlag|mysql.UnsignedFlag, size: 22, comment: "Average write request-unit cost of these statements"},
1426
1426
{name: stmtsummary.MaxQueuedRcTimeStr, tp: mysql.TypeLonglong, size: 22, flag: mysql.NotNullFlag|mysql.UnsignedFlag, comment: "Max time of waiting for available request-units"},
1427
1427
{name: stmtsummary.AvgQueuedRcTimeStr, tp: mysql.TypeLonglong, size: 22, flag: mysql.NotNullFlag|mysql.UnsignedFlag, comment: "Average time of waiting for available request-units"},
1428
+
{name: stmtsummary.MaxRequestUnitV2Str, tp: mysql.TypeDouble, flag: mysql.NotNullFlag|mysql.UnsignedFlag, size: 22, comment: "Max request-unit v2 cost of these statements"},
1429
+
{name: stmtsummary.AvgRequestUnitV2Str, tp: mysql.TypeDouble, flag: mysql.NotNullFlag|mysql.UnsignedFlag, size: 22, comment: "Average request-unit v2 cost of these statements"},
{name: stmtsummary.PlanCacheUnqualifiedStr, tp: mysql.TypeLonglong, size: 20, flag: mysql.NotNullFlag, comment: "The number of times that these statements are not supported by the plan cache"},
1430
1432
{name: stmtsummary.PlanCacheUnqualifiedLastReasonStr, tp: mysql.TypeBlob, size: types.UnspecifiedLength, comment: "The last reason why the statement is not supported by the plan cache"},
0 commit comments