2 * Copyright (c) 2009 Teodor Sigaev <teodor@sigaev.ru>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the author nor the names of any co-contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include <access/heapam.h>
34 #include <catalog/namespace.h>
35 #include <catalog/pg_class.h>
36 #include <nodes/pg_list.h>
37 #include <optimizer/plancat.h>
38 #include <storage/bufmgr.h>
39 #include <utils/builtins.h>
40 #include <utils/guc.h>
41 #include <utils/lsyscache.h>
42 #include <utils/rel.h>
46 static int nDisabledIndexes = 0;
47 static Oid *disabledIndexes = NULL;
48 static char *disableIndexesOutStr = "";
50 static int nEnabledIndexes = 0;
51 static Oid *enabledIndexes = NULL;
52 static char *enableIndexesOutStr = "";
54 get_relation_info_hook_type prevHook = NULL;
55 static bool fix_empty_table = false;
59 indexesAssign(const char * newval, bool doit, GucSource source, bool isDisable)
68 rawname = pstrdup(newval);
70 if (!SplitIdentifierString(rawname, ',', &namelist))
75 nOids = list_length(namelist);
76 newOids = malloc(sizeof(Oid) * (nOids+1));
78 elog(ERROR,"could not allocate %d bytes", (int)(sizeof(Oid) * (nOids+1)));
83 char *curname = (char *) lfirst(l);
84 Oid indexOid = RangeVarGetRelid(makeRangeVarFromNameList(stringToQualifiedNameList(curname)), true);
86 if (indexOid == InvalidOid)
88 #if PG_VERSION_NUM >= 90100
91 elog(WARNING,"'%s' does not exist", curname);
94 else if ( get_rel_relkind(indexOid) != RELKIND_INDEX )
96 #if PG_VERSION_NUM >= 90100
99 elog(WARNING,"'%s' is not an index", curname);
104 newOids[i++] = indexOid;
112 nDisabledIndexes = nOids;
113 disabledIndexes = newOids;
117 nEnabledIndexes = nOids;
118 enabledIndexes = newOids;
136 assignDisabledIndexes(const char * newval, bool doit, GucSource source)
138 return indexesAssign(newval, doit, source, true);
142 assignEnabledIndexes(const char * newval, bool doit, GucSource source)
144 return indexesAssign(newval, doit, source, false);
147 #if PG_VERSION_NUM >= 90100
150 checkDisabledIndexes(char **newval, void **extra, GucSource source)
154 val = (char*)indexesAssign(*newval, false, source, true);
166 checkEnabledIndexes(char **newval, void **extra, GucSource source)
170 val = (char*)indexesAssign(*newval, false, source, false);
182 assignDisabledIndexesNew(const char *newval, void *extra)
184 assignDisabledIndexes(newval, true, PGC_S_USER /* doesn't matter */);
188 assignEnabledIndexesNew(const char *newval, void *extra)
190 assignEnabledIndexes(newval, true, PGC_S_USER /* doesn't matter */);
196 indexFilter(PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInfo *rel) {
199 for(i=0;i<nDisabledIndexes;i++)
203 foreach(l, rel->indexlist)
205 IndexOptInfo *info = (IndexOptInfo*)lfirst(l);
207 if (disabledIndexes[i] == info->indexoid)
211 for(j=0; j<nEnabledIndexes; j++)
212 if (enabledIndexes[j] == info->indexoid)
215 if (j >= nEnabledIndexes)
216 rel->indexlist = list_delete_ptr(rel->indexlist, info);
223 if (fix_empty_table && rel)
232 execPlantuner(PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInfo *rel) {
235 relation = heap_open(relationObjectId, NoLock);
236 if (relation->rd_rel->relkind == RELKIND_RELATION)
238 if (fix_empty_table && RelationGetNumberOfBlocks(relation) == 0)
241 * estimate_rel_size() could be too pessimistic for particular
248 indexFilter(root, relationObjectId, inhparent, rel);
250 heap_close(relation, NoLock);
253 * Call next hook if it exists
256 prevHook(root, relationObjectId, inhparent, rel);
260 IndexFilterShow(Oid* indexes, int nIndexes)
266 len = 1 /* \0 */ + nIndexes * (2 * NAMEDATALEN + 2 /* ', ' */ + 1 /* . */);
267 ptr = val = palloc(len);
270 for(i=0; i<nIndexes; i++)
272 char *relname = get_rel_name(indexes[i]);
273 Oid nspOid = get_rel_namespace(indexes[i]);
274 char *nspname = get_namespace_name(nspOid);
276 if ( relname == NULL || nspOid == InvalidOid || nspname == NULL )
279 ptr += snprintf(ptr, len - (ptr - val), "%s%s.%s",
289 disabledIndexFilterShow()
291 return IndexFilterShow(disabledIndexes, nDisabledIndexes);
295 enabledIndexFilterShow()
297 return IndexFilterShow(enabledIndexes, nEnabledIndexes);
304 DefineCustomStringVariable(
305 "plantuner.forbid_index",
306 "List of forbidden indexes (deprecated)",
307 "Listed indexes will not be used in queries (deprecated, use plantuner.disable_index)",
308 &disableIndexesOutStr,
312 #if PG_VERSION_NUM >= 90100
313 checkDisabledIndexes,
314 assignDisabledIndexesNew,
316 assignDisabledIndexes,
318 disabledIndexFilterShow
321 DefineCustomStringVariable(
322 "plantuner.disable_index",
323 "List of disabled indexes",
324 "Listed indexes will not be used in queries",
325 &disableIndexesOutStr,
329 #if PG_VERSION_NUM >= 90100
330 checkDisabledIndexes,
331 assignDisabledIndexesNew,
333 assignDisabledIndexes,
335 disabledIndexFilterShow
338 DefineCustomStringVariable(
339 "plantuner.enable_index",
340 "List of enabled indexes (overload plantuner.disable_index)",
341 "Listed indexes which could be used in queries even they are listed in plantuner.disable_index",
342 &enableIndexesOutStr,
346 #if PG_VERSION_NUM >= 90100
348 assignEnabledIndexesNew,
350 assignEnabledIndexes,
352 enabledIndexFilterShow
355 DefineCustomBoolVariable(
356 "plantuner.fix_empty_table",
357 "Sets to zero estimations for empty tables",
358 "Sets to zero estimations for empty or newly created tables",
360 #if PG_VERSION_NUM >= 80400
364 #if PG_VERSION_NUM >= 80400
366 #if PG_VERSION_NUM >= 90100
374 if (get_relation_info_hook != execPlantuner )
376 prevHook = get_relation_info_hook;
377 get_relation_info_hook = execPlantuner;