From: Pavan Deolasee Date: Thu, 2 Jul 2015 07:29:35 +0000 (+0530) Subject: Fix expected output for testcase 'collate' now that error HINTs are sent X-Git-Tag: XL9_5_R1BETA1~209 X-Git-Url: http://git.postgresql.org/gitweb/review?a=commitdiff_plain;h=787a91f64a9c3abb73a7442d7f4fb2ddc860993a;p=postgres-xl.git Fix expected output for testcase 'collate' now that error HINTs are sent back to clients correctly --- diff --git a/src/test/regress/expected/collate.out b/src/test/regress/expected/collate.out index a1780c281b..6320a823f6 100644 --- a/src/test/regress/expected/collate.out +++ b/src/test/regress/expected/collate.out @@ -465,6 +465,7 @@ CREATE TABLE test_u AS SELECT a, b FROM collate_test1 UNION ALL SELECT a, b FROM -- ideally this would be a parse-time error, but for now it must be run-time: select x < y from collate_test10; -- fail ERROR: could not determine which collation to use for string comparison +HINT: Use the COLLATE clause to set the collation explicitly. select x || y from collate_test10; -- ok, because || is not collation aware ?column? ----------