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:
parent
edde972624
commit
48ddc99f44
1 changed files with 6 additions and 6 deletions
8
pg_ivm.c
8
pg_ivm.c
|
|
@ -326,9 +326,9 @@ CreateChangePreventTrigger(Oid matviewOid)
|
|||
Oid
|
||||
PgIvmImmvRelationId(void)
|
||||
{
|
||||
return RangeVarGetRelidExtended(
|
||||
return RangeVarGetRelid(
|
||||
makeRangeVar("pg_catalog", "pg_ivm_immv", -1),
|
||||
AccessShareLock, RVR_MISSING_OK, NULL, NULL);
|
||||
AccessShareLock, true);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -337,9 +337,9 @@ PgIvmImmvRelationId(void)
|
|||
Oid
|
||||
PgIvmImmvPrimaryKeyIndexId(void)
|
||||
{
|
||||
return RangeVarGetRelidExtended(
|
||||
return RangeVarGetRelid(
|
||||
makeRangeVar("pg_catalog", "pg_ivm_immv_pkey", -1),
|
||||
AccessShareLock, RVR_MISSING_OK, NULL, NULL);
|
||||
AccessShareLock, true);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue