Update expected/collate.linux.utf8.out for recent plpgsql changes.

This file was missed in commit 4c6cedd1b0.
This commit is contained in:
Tom Lane 2012-02-18 18:08:02 -05:00
parent 45b7ab6b59
commit 759c95c45b
1 changed files with 1 additions and 1 deletions

View File

@ -859,7 +859,7 @@ SELECT mylt2('a', 'B') as f;
SELECT mylt2('a', 'B' collate "C") as fail; -- conflicting collations
ERROR: could not determine which collation to use for string comparison
HINT: Use the COLLATE clause to set the collation explicitly.
CONTEXT: PL/pgSQL function "mylt2" line 6 at RETURN
CONTEXT: PL/pgSQL function mylt2(text,text) line 6 at RETURN
SELECT mylt2('a', 'B' collate "POSIX") as f;
f
---