Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6307fff

Browse files
committed
Fix typo
1 parent bf6be7a commit 6307fff

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/test/regress/expected/collate.linux.utf8.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ SELECT table_name, view_definition FROM information_schema.views
421421
collview3 | SELECT collate_test10.a, lower(((collate_test10.x || collate_test10.x) COLLATE "C")) AS lower FROM collate_test10;
422422
(3 rows)
423423

424-
-- collation propagation in various expression type
424+
-- collation propagation in various expression types
425425
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
426426
a | coalesce
427427
---+----------

src/test/regress/expected/collate.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ SELECT table_name, view_definition FROM information_schema.views
201201
collview3 | SELECT collate_test10.a, lower(((collate_test10.x || collate_test10.x) COLLATE "POSIX")) AS lower FROM collate_test10;
202202
(3 rows)
203203

204-
-- collation propagation in various expression type
204+
-- collation propagation in various expression types
205205
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
206206
a | coalesce
207207
---+----------

src/test/regress/sql/collate.linux.utf8.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ SELECT table_name, view_definition FROM information_schema.views
161161
WHERE table_name LIKE 'collview%' ORDER BY 1;
162162

163163

164-
-- collation propagation in various expression type
164+
-- collation propagation in various expression types
165165

166166
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
167167
SELECT a, coalesce(b, 'foo') FROM collate_test2 ORDER BY 2;

src/test/regress/sql/collate.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ SELECT table_name, view_definition FROM information_schema.views
9999
WHERE table_name LIKE 'collview%' ORDER BY 1;
100100

101101

102-
-- collation propagation in various expression type
102+
-- collation propagation in various expression types
103103

104104
SELECT a, coalesce(b, 'foo') FROM collate_test1 ORDER BY 2;
105105
SELECT a, coalesce(b, 'foo') FROM collate_test2 ORDER BY 2;

0 commit comments

Comments
 (0)