Query plan
632572Aug 18 2010 — edited Aug 18 2010Hi,
is it possible to obtain query plan for delete operation on table with "on delete cascade"?
query plan for:
delete from table where ... returns cost = 1 which is not true
Internally 2001 rows is deleted with on delete cascade
table (1row delete) -> table2 (1000row delete) -> table3 (1000row delete)
in my opinion cost is more than 1
thanks in advance