You've already forked explain.depesz.com
mirror of
https://gitlab.com/depesz/explain.depesz.com.git
synced 2025-11-25 22:52:37 +02:00
Forgot to special-case insert/update/delete too
Second batch of changes related to Pg::Explain 0.65
This commit is contained in:
@@ -162,6 +162,15 @@
|
||||
% elsif ( 'Seq Scan' eq $node->type ) {
|
||||
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
|
||||
% }
|
||||
% elsif ( 'Insert' eq $node->type ) {
|
||||
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
|
||||
% }
|
||||
% elsif ( 'Update' eq $node->type ) {
|
||||
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
|
||||
% }
|
||||
% elsif ( 'Delete' eq $node->type ) {
|
||||
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
|
||||
% }
|
||||
% elsif ( 'Foreign Scan' eq $node->type ) {
|
||||
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
|
||||
% }
|
||||
|
||||
Reference in New Issue
Block a user