mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Fix typo
This commit is contained in:
parent
e4ce3b7775
commit
2011712a5a
4 changed files with 4 additions and 4 deletions
|
|
@ -421,7 +421,7 @@ SELECT table_name, view_definition FROM information_schema.views
|
|||
collview3 | SELECT collate_test10.a, lower(((collate_test10.x || collate_test10.x) COLLATE "C")) AS lower FROM collate_test10;
|
||||
(3 rows)
|
||||
|
||||
-- collation propagation in various expression type
|
||||
-- collation propagation in various expression types
|
||||
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
|
||||
a | coalesce
|
||||
---+----------
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ SELECT table_name, view_definition FROM information_schema.views
|
|||
collview3 | SELECT collate_test10.a, lower(((collate_test10.x || collate_test10.x) COLLATE "POSIX")) AS lower FROM collate_test10;
|
||||
(3 rows)
|
||||
|
||||
-- collation propagation in various expression type
|
||||
-- collation propagation in various expression types
|
||||
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
|
||||
a | coalesce
|
||||
---+----------
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@ SELECT table_name, view_definition FROM information_schema.views
|
|||
WHERE table_name LIKE 'collview%' ORDER BY 1;
|
||||
|
||||
|
||||
-- collation propagation in various expression type
|
||||
-- collation propagation in various expression types
|
||||
|
||||
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
|
||||
SELECT a, coalesce(b, 'foo') FROM collate_test2 ORDER BY 2;
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ SELECT table_name, view_definition FROM information_schema.views
|
|||
WHERE table_name LIKE 'collview%' ORDER BY 1;
|
||||
|
||||
|
||||
-- collation propagation in various expression type
|
||||
-- collation propagation in various expression types
|
||||
|
||||
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
|
||||
SELECT a, coalesce(b, 'foo') FROM collate_test2 ORDER BY 2;
|
||||
|
|
|
|||
Loading…
Reference in a new issue