I don't know what SQL2008 says about SUBSTRING, but SQL2003 says in ISO/IEC 9075-2:2003 (E), 6.29 <string value function>, General Rules, 5), page 261:

d) If R [the regular expression] does not contain exactly two occurrences of the two-character sequence consisting of E [the escape character], each immediately followed by <double quote>, then an exception condition is raised: data exception - invalid use of escape character.

This means that the following is wrong:

test-std=# select substring('a' from 'a' for '#');
 substring
-----------
 a
(1 row)


--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

Reply via email to