diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-18 18:08:02 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-18 18:08:02 -0500 |
commit | 759c95c45b65a5220976c85e6f03323975c2b276 (patch) | |
tree | 09dc001bc1e44154ff98720991e1bb754e51f432 /src | |
parent | 45b7ab6b59f4a1982181327ac6393c09ffbbbbd0 (diff) | |
download | postgresql-759c95c45b65a5220976c85e6f03323975c2b276.tar.gz postgresql-759c95c45b65a5220976c85e6f03323975c2b276.zip |
Update expected/collate.linux.utf8.out for recent plpgsql changes.
This file was missed in commit 4c6cedd1b014abf2046886a9a92e10e18f0d658e.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/collate.linux.utf8.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/collate.linux.utf8.out b/src/test/regress/expected/collate.linux.utf8.out index f9659f7739e..7ba003a13cc 100644 --- a/src/test/regress/expected/collate.linux.utf8.out +++ b/src/test/regress/expected/collate.linux.utf8.out @@ -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 --- |