X-Git-Url: http://sigaev.ru/git/gitweb.cgi?p=plantuner.git;a=blobdiff_plain;f=expected%2Fplantuner.out;h=0d372cac22b081f7db7563c7ddc10974a433ea52;hp=e279d831aff8edbfc4c92e4737e67886dd7fdbb8;hb=6c66d17a2dc6e5372e0136ae495370a359a3f913;hpb=36d26353024f2b144058cbf788385dd1ef339b05 diff --git a/expected/plantuner.out b/expected/plantuner.out index e279d83..0d372ca 100644 --- a/expected/plantuner.out +++ b/expected/plantuner.out @@ -1,7 +1,7 @@ LOAD 'plantuner'; -SHOW plantuner.forbid_index; - plantuner.forbid_index ------------------------- +SHOW plantuner.disable_index; + plantuner.disable_index +------------------------- (1 row) @@ -14,24 +14,36 @@ SELECT * FROM wow; ---+--- (0 rows) -SET plantuner.forbid_index="i_idx, j_idx"; +SET plantuner.disable_index="i_idx, j_idx"; SELECT * FROM wow; i | j ---+--- (0 rows) -SHOW plantuner.forbid_index; - plantuner.forbid_index +SHOW plantuner.disable_index; + plantuner.disable_index ---------------------------- public.i_idx, public.j_idx (1 row) -SET plantuner.forbid_index="i_idx, nonexistent, public.j_idx, wow"; +SET plantuner.disable_index="i_idx, nonexistent, public.j_idx, wow"; WARNING: 'nonexistent' does not exist WARNING: 'wow' is not an index -SHOW plantuner.forbid_index; - plantuner.forbid_index +SHOW plantuner.disable_index; + plantuner.disable_index ---------------------------- public.i_idx, public.j_idx (1 row) +SET plantuner.enable_index="i_idx"; +SHOW plantuner.enable_index; + plantuner.enable_index +------------------------ + public.i_idx +(1 row) + +SELECT * FROM wow; + i | j +---+--- +(0 rows) +