From 5368a23eeb1f530d7c683b207074901c1a5417c4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 14 Aug 2013 17:26:36 -0400 Subject: [PATCH] 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. --- doc/src/sgml/func.sgml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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 + +