index ade3bf3acad5b4e81fbd7d40984293a089d74bc1..e294bea60c56fed3ac6e122796cb76348f392103 100644 (file)
@@ -115,8 +115,8 @@ check_publication_add_schema(Oid schemaid)
* Returns if relation represented by oid and Form_pg_class entry
* is publishable.
*
- * Does same checks as the above, but does not need relation to be opened
- * and also does not throw errors.
+ * Does same checks as check_publication_add_relation() above, but does not
+ * need relation to be opened and also does not throw errors.
*
* XXX This also excludes all tables with relid < FirstNormalObjectId,
* ie all tables created during initdb. This mainly affects the preinstalled
@@ -140,6 +140,15 @@ is_publishable_class(Oid relid, Form_pg_class reltuple)
relid >= FirstNormalObjectId;
}
+/*
+ * Another variant of is_publishable_class(), taking a Relation.
+ */
+bool
+is_publishable_relation(Relation rel)
+{
+ return is_publishable_class(RelationGetRelid(rel), rel->rd_rel);
+}
+
/*
* Filter out the partitions whose parent tables were also specified in
* the publication.
return result;
}
-/*
- * Another variant of this, taking a Relation.
- */
-bool
-is_publishable_relation(Relation rel)
-{
- return is_publishable_class(RelationGetRelid(rel), rel->rd_rel);
-}
-
/*
* Returns true if any schema is associated with the publication, false if no
* schema is associated with the publication.