support 9.1
authorteodor <teodor>
Mon, 3 Oct 2011 14:31:26 +0000 (14:31 +0000)
committerteodor <teodor>
Mon, 3 Oct 2011 14:31:26 +0000 (14:31 +0000)
online_analyze.c

index 78077e8..47943c2 100644 (file)
@@ -338,7 +338,13 @@ makeAnalyze(Oid relOid, CmdType operation, uint32 naffected)
                                        OnlyneAnalyzeTableType  reltype;
 
                                        rel = RelationIdGetRelation(relOid);
-                                       reltype = (rel->rd_istemp || rel->rd_islocaltemp) ? OATT_TEMPORARY : OATT_PERSISTENT;
+                                       reltype = 
+#if PG_VERSION_NUM >= 90100
+                                               (rel->rd_rel->relpersistence == RELPERSISTENCE_TEMP)
+#else
+                                               (rel->rd_istemp || rel->rd_islocaltemp)
+#endif
+                                                       ? OATT_TEMPORARY : OATT_PERSISTENT;
                                        RelationClose(rel);
 
                                        /*