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 09ef2f8 commit ee57892Copy full SHA for ee57892
src/backend/storage/smgr/smgr.c
@@ -231,12 +231,12 @@ smgropen(RelFileLocator rlocator, ProcNumber backend)
231
reln->smgr_cached_nblocks[i] = InvalidBlockNumber;
232
reln->smgr_which = 0; /* we only have md.c at present */
233
234
- /* implementation-specific initialization */
235
- smgrsw[reln->smgr_which].smgr_open(reln);
236
-
237
/* it is not pinned yet */
238
reln->pincount = 0;
239
dlist_push_tail(&unpinned_relns, &reln->node);
+
+ /* implementation-specific initialization */
+ smgrsw[reln->smgr_which].smgr_open(reln);
240
}
241
242
return reln;
0 commit comments