/*
* GetNewRelFileNode
- * Generate a new relfilenode number that is unique within the given
- * tablespace.
+ * Generate a new relfilenode number that is unique within the
+ * database of the given tablespace.
*
* If the relfilenode will also be used as the relation's OID, pass the
* opened pg_class catalog, and this routine will guarantee that the result
FlushRelationBuffers(rel);
/*
- * Relfilenodes are not unique across tablespaces, so we need to allocate
- * a new one in the new tablespace.
+ * Relfilenodes are not unique in databases across tablespaces, so we
+ * need to allocate a new one in the new tablespace.
*/
newrelfilenode = GetNewRelFileNode(newTableSpace, NULL,
rel->rd_rel->relpersistence);
* relNode identifies the specific relation. relNode corresponds to
* pg_class.relfilenode (NOT pg_class.oid, because we need to be able
* to assign new physical files to relations in some situations).
- * Notice that relNode is only unique within a particular tablespace.
+ * Notice that relNode is only unique within a database in a particular
+ * tablespace.
*
* Note: spcNode must be GLOBALTABLESPACE_OID if and only if dbNode is
* zero. We support shared relations only in the "global" tablespace.