The memory consumed by UpdateExec.updatedRowKeys
and UpdateExec.mergedRowData
is not tracked
#34096
Labels
type/enhancement
The issue or PR belongs to an enhancement.
Enhancement
updatedRowKeys
andmergedRowData
inUpdateExec
can use a large amount of memory but is not tracked in the memory tracker.update `T_CUSTOMER` set purse_num = purse_num + 1 where vip_level = '0'
update T_CUSTOMER n, T_CUSTOMER m set n.purse_num=1, m.purse_num=2 where n.vip_level = '0'
The text was updated successfully, but these errors were encountered: