another windows fix
[plantuner.git] / plantuner.c
index 4e89d91..0fa907a 100644 (file)
@@ -30,7 +30,9 @@
 #include <postgres.h>
 
 #include <fmgr.h>
+#include <miscadmin.h>
 #include <access/heapam.h>
+#include <access/xact.h>
 #include <catalog/namespace.h>
 #include <catalog/pg_class.h>
 #include <nodes/pg_list.h>
 #include <utils/guc.h>
 #include <utils/lsyscache.h>
 #include <utils/rel.h>
+#if PG_VERSION_NUM >= 100000
+#include <utils/regproc.h>
+#include <utils/varlena.h>
+#endif
 
 PG_MODULE_MAGIC;
 
@@ -54,6 +60,8 @@ static char *enableIndexesOutStr = "";
 get_relation_info_hook_type    prevHook = NULL;
 static bool    fix_empty_table = false;
 
+static bool    plantuner_enable_inited = false;
+static bool    plantuner_disable_inited = false;
 
 static const char *
 indexesAssign(const char * newval, bool doit, GucSource source, bool isDisable)
@@ -70,6 +78,22 @@ indexesAssign(const char * newval, bool doit, GucSource source, bool isDisable)
        if (!SplitIdentifierString(rawname, ',', &namelist))
                goto cleanup;
 
+       /*
+        * follow work could be done only in normal processing because of
+        * accsess to system catalog
+        */
+       if (MyBackendId == InvalidBackendId || !IsUnderPostmaster ||
+               !IsTransactionState())
+       {
+               /* reset init state */
+               if (isDisable)
+                       plantuner_disable_inited = false;
+               else
+                       plantuner_enable_inited = false;
+
+               return newval;
+       }
+
        if (doit)
        {
                nOids = list_length(namelist);
@@ -79,6 +103,11 @@ indexesAssign(const char * newval, bool doit, GucSource source, bool isDisable)
                                 (int)(sizeof(Oid) * (nOids+1)));
        }
 
+       if (isDisable)
+               plantuner_disable_inited = true;
+       else
+               plantuner_enable_inited = true;
+
        foreach(l, namelist)
        {
                char    *curname = (char *) lfirst(l);
@@ -118,12 +147,16 @@ indexesAssign(const char * newval, bool doit, GucSource source, bool isDisable)
        {
                if (isDisable)
                {
-                       nDisabledIndexes = nOids;
+                       nDisabledIndexes = i;
+                       if (disabledIndexes)
+                               free(disabledIndexes);
                        disabledIndexes = newOids;
                }
                else
                {
-                       nEnabledIndexes = nOids;
+                       nEnabledIndexes = i;
+                       if (enabledIndexes)
+                               free(enabledIndexes);
                        enabledIndexes = newOids;
                }
        }
@@ -153,6 +186,15 @@ assignEnabledIndexes(const char * newval, bool doit, GucSource source)
        return indexesAssign(newval, doit, source, false);
 }
 
+static void
+lateInit()
+{
+       if (!plantuner_enable_inited)
+               indexesAssign(enableIndexesOutStr, true, PGC_S_USER, false);
+       if (!plantuner_disable_inited)
+               indexesAssign(disableIndexesOutStr, true, PGC_S_USER, true);
+}
+
 #if PG_VERSION_NUM >= 90100
 
 static bool
@@ -207,6 +249,8 @@ indexFilter(PlannerInfo *root, Oid relationObjectId, bool inhparent,
 {
        int i;
 
+       lateInit();
+
        for(i=0;i<nDisabledIndexes;i++)
        {
                ListCell   *l;
@@ -269,6 +313,8 @@ IndexFilterShow(Oid* indexes, int nIndexes)
        int             i,
                        len;
 
+       lateInit();
+
        len = 1 /* \0 */ + nIndexes * (2 * NAMEDATALEN + 2 /* ', ' */ + 1 /* . */);
        ptr = val = palloc(len);