projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b79758c
)
Fix expected output for testcase 'collate' now that error HINTs are sent
author
Pavan Deolasee
<
[email protected]
>
Thu, 2 Jul 2015 07:29:35 +0000
(12:59 +0530)
committer
Pavan Deolasee
<
[email protected]
>
Thu, 2 Jul 2015 07:30:13 +0000
(13:00 +0530)
back to clients correctly
src/test/regress/expected/collate.out
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/expected/collate.out
b/src/test/regress/expected/collate.out
index a1780c281bab36c1923bfeef67f4a4c5e75a4390..6320a823f69f7132267d74edb4290fef1ca38470 100644
(file)
--- 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?
----------