1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00

rename macro isTempOrToastNamespace to isTempOrTempToastNamespace

Done for clarity
This commit is contained in:
Bruce Momjian
2014-08-25 21:28:19 -04:00
parent 5d16332e96
commit 73fe87503f
5 changed files with 10 additions and 10 deletions

View File

@ -836,7 +836,7 @@ pg_relation_filepath(PG_FUNCTION_ARGS)
backend = InvalidBackendId;
break;
case RELPERSISTENCE_TEMP:
if (isTempOrToastNamespace(relform->relnamespace))
if (isTempOrTempToastNamespace(relform->relnamespace))
backend = MyBackendId;
else
{