X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?p=plantuner.git;a=blobdiff_plain;f=plantuner.c;h=a91bf067bb5f0bc20f6c61459fb21730505952fc;hp=96d679ac60008e931f9ca7089a98605d9c123cd8;hb=6c66d17a2dc6e5372e0136ae495370a359a3f913;hpb=36d26353024f2b144058cbf788385dd1ef339b05 diff --git a/plantuner.c b/plantuner.c index 96d679a..a91bf06 100644 --- a/plantuner.c +++ b/plantuner.c @@ -43,15 +43,20 @@ PG_MODULE_MAGIC; -static int nIndexesOut = 0; -static Oid *indexesOut = NULL; +static int nDisabledIndexes = 0; +static Oid *disabledIndexes = NULL; +static char *disableIndexesOutStr = ""; + +static int nEnabledIndexes = 0; +static Oid *enabledIndexes = NULL; +static char *enableIndexesOutStr = ""; + get_relation_info_hook_type prevHook = NULL; static bool fix_empty_table = false; -static char *indexesOutStr = ""; static const char * -indexesOutAssign(const char * newval, bool doit, GucSource source) +indexesAssign(const char * newval, bool doit, GucSource source, bool isDisable) { char *rawname; List *namelist; @@ -102,8 +107,16 @@ indexesOutAssign(const char * newval, bool doit, GucSource source) if (doit) { - nIndexesOut = nOids; - indexesOut = newOids; + if (isDisable) + { + nDisabledIndexes = nOids; + disabledIndexes = newOids; + } + else + { + nEnabledIndexes = nOids; + enabledIndexes = newOids; + } } pfree(rawname); @@ -119,14 +132,26 @@ cleanup: return NULL; } +static const char * +assignDisabledIndexes(const char * newval, bool doit, GucSource source) +{ + return indexesAssign(newval, doit, source, true); +} + +static const char * +assignEnabledIndexes(const char * newval, bool doit, GucSource source) +{ + return indexesAssign(newval, doit, source, false); +} + #if PG_VERSION_NUM >= 90100 static bool -indexesOutCheck(char **newval, void **extra, GucSource source) +checkDisabledIndexes(char **newval, void **extra, GucSource source) { char *val; - val = (char*)indexesOutAssign(*newval, false, source); + val = (char*)indexesAssign(*newval, false, source, true); if (val) { @@ -136,10 +161,33 @@ indexesOutCheck(char **newval, void **extra, GucSource source) return false; } + +static bool +checkEnabledIndexes(char **newval, void **extra, GucSource source) +{ + char *val; + + val = (char*)indexesAssign(*newval, false, source, false); + + if (val) + { + *newval = val; + return true; + } + + return false; +} + +static void +assignDisabledIndexesNew(const char *newval, void *extra) +{ + assignDisabledIndexes(newval, true, PGC_S_USER /* doesn't matter */); +} + static void -indexesOutAssignNew(const char *newval, void *extra) +assignEnabledIndexesNew(const char *newval, void *extra) { - indexesOutAssign(newval, true, PGC_S_USER /* doesn't matter */); + assignEnabledIndexes(newval, true, PGC_S_USER /* doesn't matter */); } #endif @@ -148,7 +196,7 @@ static void indexFilter(PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInfo *rel) { int i; - for(i=0;iindexoid) + if (disabledIndexes[i] == info->indexoid) { - rel->indexlist = list_delete_ptr(rel->indexlist, info); + int j; + + for(j=0; jindexoid) + break; + + if (j >= nEnabledIndexes) + rel->indexlist = list_delete_ptr(rel->indexlist, info); + break; } } @@ -201,20 +257,20 @@ execPlantuner(PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInf } static const char* -IndexFilterShow(void) +IndexFilterShow(Oid* indexes, int nIndexes) { char *val, *ptr; int i, len; - len = 1 /* \0 */ + nIndexesOut * (2 * NAMEDATALEN + 2 /* ', ' */ + 1 /* . */); + len = 1 /* \0 */ + nIndexes * (2 * NAMEDATALEN + 2 /* ', ' */ + 1 /* . */); ptr = val = palloc(len); *ptr ='\0'; - for(i=0; i= 90100 + checkDisabledIndexes, + assignDisabledIndexesNew, +#else + assignDisabledIndexes, +#endif + disabledIndexFilterShow + ); + + DefineCustomStringVariable( + "plantuner.disable_index", + "List of disabled indexes", "Listed indexes will not be used in queries", - &indexesOutStr, + &disableIndexesOutStr, + "", + PGC_USERSET, + 0, +#if PG_VERSION_NUM >= 90100 + checkDisabledIndexes, + assignDisabledIndexesNew, +#else + assignDisabledIndexes, +#endif + disabledIndexFilterShow + ); + + DefineCustomStringVariable( + "plantuner.enable_index", + "List of enabled indexes (overload plantuner.disable_index)", + "Listed indexes which could be used in queries even they are listed in plantuner.disable_index", + &enableIndexesOutStr, "", PGC_USERSET, 0, #if PG_VERSION_NUM >= 90100 - indexesOutCheck, - indexesOutAssignNew, + checkEnabledIndexes, + assignEnabledIndexesNew, #else - indexesOutAssign, + assignEnabledIndexes, #endif - IndexFilterShow + enabledIndexFilterShow ); DefineCustomBoolVariable(