3 SHOW plantuner.forbid_index;
5 CREATE TABLE wow (i int, j int);
6 CREATE INDEX i_idx ON wow (i);
7 CREATE INDEX j_idx ON wow (j);
9 SET enable_seqscan=off;
13 SET plantuner.forbid_index="i_idx, j_idx";
17 SHOW plantuner.forbid_index;
19 SET plantuner.forbid_index="i_idx, nonexistent, public.j_idx, wow";
21 SHOW plantuner.forbid_index;