Make some code cleaning in pg_ivm.c

Remove some while characters, and replace RangeVarGetRelidExtende
with RangeVarGetRelid, which are introduced by edde972624.
This commit is contained in:
Yugo Nagata 2024-10-21 13:12:50 +09:00
parent edde972624
commit 48ddc99f44

View file

@ -326,9 +326,9 @@ CreateChangePreventTrigger(Oid matviewOid)
Oid Oid
PgIvmImmvRelationId(void) PgIvmImmvRelationId(void)
{ {
return RangeVarGetRelidExtended( return RangeVarGetRelid(
makeRangeVar("pg_catalog", "pg_ivm_immv", -1), makeRangeVar("pg_catalog", "pg_ivm_immv", -1),
AccessShareLock, RVR_MISSING_OK, NULL, NULL); AccessShareLock, true);
} }
/* /*
@ -337,9 +337,9 @@ PgIvmImmvRelationId(void)
Oid Oid
PgIvmImmvPrimaryKeyIndexId(void) PgIvmImmvPrimaryKeyIndexId(void)
{ {
return RangeVarGetRelidExtended( return RangeVarGetRelid(
makeRangeVar("pg_catalog", "pg_ivm_immv_pkey", -1), makeRangeVar("pg_catalog", "pg_ivm_immv_pkey", -1),
AccessShareLock, RVR_MISSING_OK, NULL, NULL); AccessShareLock, true);
} }
/* /*