1
0
mirror of https://gitlab.com/depesz/explain.depesz.com.git synced 2025-02-19 19:44:40 +02:00

Merge branch 'master' of github.com:depesz/explain.depesz.com

This commit is contained in:
Hubert depesz Lubaczewski 2013-10-28 14:59:48 +01:00
commit 9ba0cc07cc

View File

@ -160,16 +160,22 @@
% elsif ( 'Index Scan Backward' eq $node->type ) {
using <%= $node->scan_on->{ index_name } %> on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Index Only Scan' eq $node->type ) {
using <%= $node->scan_on->{ index_name } %> on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Index Only Scan Backward' eq $node->type ) {
using <%= $node->scan_on->{ index_name } %> on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Seq Scan' eq $node->type ) {
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Insert' eq $node->type ) {
% elsif ( ( 'Insert' eq $node->type ) && ( $node->scan_on ) ) {
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Update' eq $node->type ) {
% elsif ( ( 'Update' eq $node->type ) && ( $node->scan_on ) ) {
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Delete' eq $node->type ) {
% elsif ( ( 'Delete' eq $node->type ) && ( $node->scan_on ) ) {
on <%= $node->scan_on->{ table_name } %> <%= $node->scan_on->{ table_alias } || '' %>
% }
% elsif ( 'Foreign Scan' eq $node->type ) {