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:
commit
9ba0cc07cc
@ -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 ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user