From: Bruce Momjian Date: Wed, 14 Aug 2013 21:26:36 +0000 (-0400) Subject: docs: document TRIM "comma" syntax X-Git-Tag: REL9_4_BETA1~1225 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5368a23eeb1f530d7c683b207074901c1a5417c4;p=postgresql docs: document TRIM "comma" syntax This syntax is supported by the parser, but is non-standard. _Not_ backpatched to 9.3 in case we change our minds. --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 615462195b..b21c433565 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1293,6 +1293,25 @@ Tom + + + + trim + + trim(leading | trailing + | both from + string + , characters + ) + + text + + Non-standard version of trim() + + trim(both from 'xTomxx', 'x') + Tom + +