mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix typo
This commit is contained in:
parent
bf6be7af25
commit
6307fff358
@ -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 New Issue
Block a user