We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d87d8 commit 4bd4295Copy full SHA for 4bd4295
src/relation_info.c
@@ -104,6 +104,9 @@ refresh_pathman_relation_info(Oid relid,
104
FreeRangesArray(prel);
105
}
106
107
+ /* First we assume that this entry is invalid */
108
+ prel->valid = false;
109
+
110
/* Try locking parent, exit fast if 'allow_incomplete' */
111
if (allow_incomplete)
112
{
@@ -121,9 +124,6 @@ refresh_pathman_relation_info(Oid relid,
121
124
return NULL; /* exit */
122
125
123
126
- /* First we assume that this entry is invalid */
- prel->valid = false;
-
127
/* Make both arrays point to NULL */
128
prel->children = NULL;
129
prel->ranges = NULL;
0 commit comments