diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml
index 065c982082d..38b18a02bb3 100644
--- a/doc/src/sgml/ref/create_foreign_table.sgml
+++ b/doc/src/sgml/ref/create_foreign_table.sgml
@@ -160,6 +160,18 @@ CHECK ( expression ) [ NO INHERIT ]
+
+ PARTITION OF parent_table FOR VALUES partition_bound_spec
+
+
+ This form can be used to create the foreign table as partition of
+ the given parent table with specified partition bound values.
+ See the similar form of
+ for more details.
+
+
+
+
CONSTRAINT constraint_name
@@ -308,6 +320,11 @@ CHECK ( expression ) [ NO INHERIT ]
responsibility to ensure that the constraint definition matches
reality.
+
+
+ Although foreign tables can be specified as partitions, routing of tuples
+ to foreign-table partitions is not supported.
+