diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 36319222e6..b0dc6db356 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -6481,6 +6481,16 @@ SELECT regexp_match('abc01234xyz', '(?:(.*?)(\d+)(.*)){1,1}');
(e.g., 9.99EEEE is a valid pattern).
+
+
+
+ RN (Roman numerals) converts a valid Roman numeral string to a number.
+ RN and rn are both valid.
+ The input is parsed case-insensitively, (e.g., to_number('CVIII', 'RN') and
+ to_number('CvIiI', 'rn') both produce 108). If this option
+ is specified in the format string, other elements of the format string will be ignored.
+
+