static void PersistentDatabase_VerifyInitScan(void)
{
	if (persistentDatabaseSharedData == NULL)
		elog(PANIC, "Persistent database information shared-memory not setup");

	PersistentFileSysObj_VerifyInitScan();
}
static void PersistentRelation_VerifyInitScan(void)
{
	if (persistentRelationSharedData == NULL)
	{
		elog(PANIC, "Persistent relation information shared-memory not setup");
	}

	PersistentFileSysObj_VerifyInitScan();
}