Skip to content

Commit c2a2a28

Browse files
committed
Fix some answer files for parallel schedule in pax
1 parent efdbad2 commit c2a2a28

27 files changed

Lines changed: 318 additions & 262 deletions

contrib/pax_storage/src/test/regress/expected/aggregates.out

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ group by t1.a,t1.b,t1.c,t1.d,t2.x,t2.y,t2.z;
13291329
------------------------------------------------------------
13301330
Gather Motion 3:1 (slice1; segments: 3)
13311331
-> HashAggregate
1332-
Group Key: t1.a, t1.b, t2.x, t2.y
1332+
Group Key: t1.a, t1.b
13331333
-> Hash Join
13341334
Hash Cond: ((t2.x = t1.a) AND (t2.y = t1.b))
13351335
-> Seq Scan on t2
@@ -1346,7 +1346,7 @@ group by t1.a,t1.b,t1.c,t1.d,t2.x,t2.z;
13461346
------------------------------------------------------------
13471347
Gather Motion 3:1 (slice1; segments: 3)
13481348
-> HashAggregate
1349-
Group Key: t1.a, t1.b, t2.x, t2.z
1349+
Group Key: t1.a, t1.b, t2.z
13501350
-> Hash Join
13511351
Hash Cond: ((t2.x = t1.a) AND (t2.y = t1.b))
13521352
-> Seq Scan on t2
@@ -1596,7 +1596,7 @@ select * from agg_view1;
15961596
select pg_get_viewdef('agg_view1'::regclass);
15971597
pg_get_viewdef
15981598
---------------------------------------------------------------------------------------------------------------------
1599-
SELECT aggfns(v.a, v.b, v.c) AS aggfns +
1599+
SELECT aggfns(a, b, c) AS aggfns +
16001600
FROM ( VALUES (1,3,'foo'::text), (0,NULL::integer,NULL::text), (2,2,'bar'::text), (3,1,'baz'::text)) v(a, b, c);
16011601
(1 row)
16021602

@@ -1648,7 +1648,7 @@ select * from agg_view1;
16481648
select pg_get_viewdef('agg_view1'::regclass);
16491649
pg_get_viewdef
16501650
---------------------------------------------------------------------------------------------------------------------
1651-
SELECT aggfns(v.a, v.b, v.c ORDER BY (v.b + 1)) AS aggfns +
1651+
SELECT aggfns(a, b, c ORDER BY (b + 1)) AS aggfns +
16521652
FROM ( VALUES (1,3,'foo'::text), (0,NULL::integer,NULL::text), (2,2,'bar'::text), (3,1,'baz'::text)) v(a, b, c);
16531653
(1 row)
16541654

@@ -1664,7 +1664,7 @@ select * from agg_view1;
16641664
select pg_get_viewdef('agg_view1'::regclass);
16651665
pg_get_viewdef
16661666
---------------------------------------------------------------------------------------------------------------------
1667-
SELECT aggfns(v.a, v.a, v.c ORDER BY v.b) AS aggfns +
1667+
SELECT aggfns(a, a, c ORDER BY b) AS aggfns +
16681668
FROM ( VALUES (1,3,'foo'::text), (0,NULL::integer,NULL::text), (2,2,'bar'::text), (3,1,'baz'::text)) v(a, b, c);
16691669
(1 row)
16701670

@@ -1680,7 +1680,7 @@ select * from agg_view1;
16801680
select pg_get_viewdef('agg_view1'::regclass);
16811681
pg_get_viewdef
16821682
---------------------------------------------------------------------------------------------------------------------
1683-
SELECT aggfns(v.a, v.b, v.c ORDER BY v.c USING ~<~ NULLS LAST) AS aggfns +
1683+
SELECT aggfns(a, b, c ORDER BY c USING ~<~ NULLS LAST) AS aggfns +
16841684
FROM ( VALUES (1,3,'foo'::text), (0,NULL::integer,NULL::text), (2,2,'bar'::text), (3,1,'baz'::text)) v(a, b, c);
16851685
(1 row)
16861686

contrib/pax_storage/src/test/regress/expected/alter_generic.out

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ ALTER FUNCTION alt_func1(int) RENAME TO alt_func2; -- failed (name conflict)
3838
ERROR: function alt_func2(integer) already exists in schema "alt_nsp1"
3939
ALTER FUNCTION alt_func1(int) RENAME TO alt_func3; -- OK
4040
ALTER FUNCTION alt_func2(int) OWNER TO regress_alter_generic_user2; -- failed (no role membership)
41-
ERROR: must be member of role "regress_alter_generic_user2"
41+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
4242
ALTER FUNCTION alt_func2(int) OWNER TO regress_alter_generic_user3; -- OK
4343
ALTER FUNCTION alt_func2(int) SET SCHEMA alt_nsp1; -- OK, already there
4444
ALTER FUNCTION alt_func2(int) SET SCHEMA alt_nsp2; -- OK
4545
ALTER AGGREGATE alt_agg1(int) RENAME TO alt_agg2; -- failed (name conflict)
4646
ERROR: function alt_agg2(integer) already exists in schema "alt_nsp1"
4747
ALTER AGGREGATE alt_agg1(int) RENAME TO alt_agg3; -- OK
4848
ALTER AGGREGATE alt_agg2(int) OWNER TO regress_alter_generic_user2; -- failed (no role membership)
49-
ERROR: must be member of role "regress_alter_generic_user2"
49+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
5050
ALTER AGGREGATE alt_agg2(int) OWNER TO regress_alter_generic_user3; -- OK
5151
ALTER AGGREGATE alt_agg2(int) SET SCHEMA alt_nsp2; -- OK
5252
SET SESSION AUTHORIZATION regress_alter_generic_user2;
@@ -66,7 +66,7 @@ ALTER FUNCTION alt_func1(int) RENAME TO alt_func4; -- OK
6666
ALTER FUNCTION alt_func3(int) OWNER TO regress_alter_generic_user2; -- failed (not owner)
6767
ERROR: must be owner of function alt_func3
6868
ALTER FUNCTION alt_func2(int) OWNER TO regress_alter_generic_user3; -- failed (no role membership)
69-
ERROR: must be member of role "regress_alter_generic_user3"
69+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
7070
ALTER FUNCTION alt_func3(int) SET SCHEMA alt_nsp2; -- failed (not owner)
7171
ERROR: must be owner of function alt_func3
7272
ALTER FUNCTION alt_func2(int) SET SCHEMA alt_nsp2; -- failed (name conflicts)
@@ -77,7 +77,7 @@ ALTER AGGREGATE alt_agg1(int) RENAME TO alt_agg4; -- OK
7777
ALTER AGGREGATE alt_agg3(int) OWNER TO regress_alter_generic_user2; -- failed (not owner)
7878
ERROR: must be owner of function alt_agg3
7979
ALTER AGGREGATE alt_agg2(int) OWNER TO regress_alter_generic_user3; -- failed (no role membership)
80-
ERROR: must be member of role "regress_alter_generic_user3"
80+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
8181
ALTER AGGREGATE alt_agg3(int) SET SCHEMA alt_nsp2; -- failed (not owner)
8282
ERROR: must be owner of function alt_agg3
8383
ALTER AGGREGATE alt_agg2(int) SET SCHEMA alt_nsp2; -- failed (name conflict)
@@ -114,7 +114,7 @@ ALTER CONVERSION alt_conv1 RENAME TO alt_conv2; -- failed (name conflict)
114114
ERROR: conversion "alt_conv2" already exists in schema "alt_nsp1"
115115
ALTER CONVERSION alt_conv1 RENAME TO alt_conv3; -- OK
116116
ALTER CONVERSION alt_conv2 OWNER TO regress_alter_generic_user2; -- failed (no role membership)
117-
ERROR: must be member of role "regress_alter_generic_user2"
117+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
118118
ALTER CONVERSION alt_conv2 OWNER TO regress_alter_generic_user3; -- OK
119119
ALTER CONVERSION alt_conv2 SET SCHEMA alt_nsp2; -- OK
120120
SET SESSION AUTHORIZATION regress_alter_generic_user2;
@@ -126,7 +126,7 @@ ALTER CONVERSION alt_conv1 RENAME TO alt_conv4; -- OK
126126
ALTER CONVERSION alt_conv3 OWNER TO regress_alter_generic_user2; -- failed (not owner)
127127
ERROR: must be owner of conversion alt_conv3
128128
ALTER CONVERSION alt_conv2 OWNER TO regress_alter_generic_user3; -- failed (no role membership)
129-
ERROR: must be member of role "regress_alter_generic_user3"
129+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
130130
ALTER CONVERSION alt_conv3 SET SCHEMA alt_nsp2; -- failed (not owner)
131131
ERROR: must be owner of conversion alt_conv3
132132
ALTER CONVERSION alt_conv2 SET SCHEMA alt_nsp2; -- failed (name conflict)
@@ -188,7 +188,7 @@ ALTER LANGUAGE alt_lang1 RENAME TO alt_lang3; -- OK
188188
ALTER LANGUAGE alt_lang2 OWNER TO regress_alter_generic_user3; -- failed (not owner)
189189
ERROR: must be owner of language alt_lang2
190190
ALTER LANGUAGE alt_lang3 OWNER TO regress_alter_generic_user2; -- failed (no role membership)
191-
ERROR: must be member of role "regress_alter_generic_user2"
191+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
192192
ALTER LANGUAGE alt_lang3 OWNER TO regress_alter_generic_user3; -- OK
193193
RESET SESSION AUTHORIZATION;
194194
SELECT lanname, a.rolname
@@ -208,15 +208,15 @@ SET SESSION AUTHORIZATION regress_alter_generic_user1;
208208
CREATE OPERATOR @-@ ( leftarg = int4, rightarg = int4, procedure = int4mi );
209209
CREATE OPERATOR @+@ ( leftarg = int4, rightarg = int4, procedure = int4pl );
210210
ALTER OPERATOR @+@(int4, int4) OWNER TO regress_alter_generic_user2; -- failed (no role membership)
211-
ERROR: must be member of role "regress_alter_generic_user2"
211+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
212212
ALTER OPERATOR @+@(int4, int4) OWNER TO regress_alter_generic_user3; -- OK
213213
ALTER OPERATOR @-@(int4, int4) SET SCHEMA alt_nsp2; -- OK
214214
SET SESSION AUTHORIZATION regress_alter_generic_user2;
215215
CREATE OPERATOR @-@ ( leftarg = int4, rightarg = int4, procedure = int4mi );
216216
ALTER OPERATOR @+@(int4, int4) OWNER TO regress_alter_generic_user2; -- failed (not owner)
217217
ERROR: must be owner of operator @+@
218218
ALTER OPERATOR @-@(int4, int4) OWNER TO regress_alter_generic_user3; -- failed (no role membership)
219-
ERROR: must be member of role "regress_alter_generic_user3"
219+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
220220
ALTER OPERATOR @+@(int4, int4) SET SCHEMA alt_nsp2; -- failed (not owner)
221221
ERROR: must be owner of operator @+@
222222
-- can't test this: the error message includes the raw oid of namespace
@@ -251,14 +251,14 @@ ALTER OPERATOR FAMILY alt_opf1 USING hash RENAME TO alt_opf2; -- failed (name c
251251
ERROR: operator family "alt_opf2" for access method "hash" already exists in schema "alt_nsp1"
252252
ALTER OPERATOR FAMILY alt_opf1 USING hash RENAME TO alt_opf3; -- OK
253253
ALTER OPERATOR FAMILY alt_opf2 USING hash OWNER TO regress_alter_generic_user2; -- failed (no role membership)
254-
ERROR: must be member of role "regress_alter_generic_user2"
254+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
255255
ALTER OPERATOR FAMILY alt_opf2 USING hash OWNER TO regress_alter_generic_user3; -- OK
256256
ALTER OPERATOR FAMILY alt_opf2 USING hash SET SCHEMA alt_nsp2; -- OK
257257
ALTER OPERATOR CLASS alt_opc1 USING hash RENAME TO alt_opc2; -- failed (name conflict)
258258
ERROR: operator class "alt_opc2" for access method "hash" already exists in schema "alt_nsp1"
259259
ALTER OPERATOR CLASS alt_opc1 USING hash RENAME TO alt_opc3; -- OK
260260
ALTER OPERATOR CLASS alt_opc2 USING hash OWNER TO regress_alter_generic_user2; -- failed (no role membership)
261-
ERROR: must be member of role "regress_alter_generic_user2"
261+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
262262
ALTER OPERATOR CLASS alt_opc2 USING hash OWNER TO regress_alter_generic_user3; -- OK
263263
ALTER OPERATOR CLASS alt_opc2 USING hash SET SCHEMA alt_nsp2; -- OK
264264
RESET SESSION AUTHORIZATION;
@@ -277,7 +277,7 @@ ALTER OPERATOR FAMILY alt_opf1 USING hash RENAME TO alt_opf4; -- OK
277277
ALTER OPERATOR FAMILY alt_opf3 USING hash OWNER TO regress_alter_generic_user2; -- failed (not owner)
278278
ERROR: must be owner of operator family alt_opf3
279279
ALTER OPERATOR FAMILY alt_opf2 USING hash OWNER TO regress_alter_generic_user3; -- failed (no role membership)
280-
ERROR: must be member of role "regress_alter_generic_user3"
280+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
281281
ALTER OPERATOR FAMILY alt_opf3 USING hash SET SCHEMA alt_nsp2; -- failed (not owner)
282282
ERROR: must be owner of operator family alt_opf3
283283
ALTER OPERATOR FAMILY alt_opf2 USING hash SET SCHEMA alt_nsp2; -- failed (name conflict)
@@ -288,7 +288,7 @@ ALTER OPERATOR CLASS alt_opc1 USING hash RENAME TO alt_opc4; -- OK
288288
ALTER OPERATOR CLASS alt_opc3 USING hash OWNER TO regress_alter_generic_user2; -- failed (not owner)
289289
ERROR: must be owner of operator class alt_opc3
290290
ALTER OPERATOR CLASS alt_opc2 USING hash OWNER TO regress_alter_generic_user3; -- failed (no role membership)
291-
ERROR: must be member of role "regress_alter_generic_user3"
291+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
292292
ALTER OPERATOR CLASS alt_opc3 USING hash SET SCHEMA alt_nsp2; -- failed (not owner)
293293
ERROR: must be owner of operator class alt_opc3
294294
ALTER OPERATOR CLASS alt_opc2 USING hash SET SCHEMA alt_nsp2; -- failed (name conflict)
@@ -524,7 +524,7 @@ ALTER STATISTICS alt_stat1 RENAME TO alt_stat2; -- failed (name conflict)
524524
ERROR: statistics object "alt_stat2" already exists in schema "alt_nsp1"
525525
ALTER STATISTICS alt_stat1 RENAME TO alt_stat3; -- OK
526526
ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user2; -- failed (no role membership)
527-
ERROR: must be member of role "regress_alter_generic_user2"
527+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
528528
ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user3; -- OK
529529
ALTER STATISTICS alt_stat2 SET SCHEMA alt_nsp2; -- OK
530530
SET SESSION AUTHORIZATION regress_alter_generic_user2;
@@ -537,7 +537,7 @@ ALTER STATISTICS alt_stat1 RENAME TO alt_stat4; -- OK
537537
ALTER STATISTICS alt_stat3 OWNER TO regress_alter_generic_user2; -- failed (not owner)
538538
ERROR: must be owner of statistics object alt_stat3
539539
ALTER STATISTICS alt_stat2 OWNER TO regress_alter_generic_user3; -- failed (no role membership)
540-
ERROR: must be member of role "regress_alter_generic_user3"
540+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
541541
ALTER STATISTICS alt_stat3 SET SCHEMA alt_nsp2; -- failed (not owner)
542542
ERROR: must be owner of statistics object alt_stat3
543543
ALTER STATISTICS alt_stat2 SET SCHEMA alt_nsp2; -- failed (name conflict)
@@ -566,7 +566,7 @@ ALTER TEXT SEARCH DICTIONARY alt_ts_dict1 RENAME TO alt_ts_dict2; -- failed (na
566566
ERROR: text search dictionary "alt_ts_dict2" already exists in schema "alt_nsp1"
567567
ALTER TEXT SEARCH DICTIONARY alt_ts_dict1 RENAME TO alt_ts_dict3; -- OK
568568
ALTER TEXT SEARCH DICTIONARY alt_ts_dict2 OWNER TO regress_alter_generic_user2; -- failed (no role membership)
569-
ERROR: must be member of role "regress_alter_generic_user2"
569+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
570570
ALTER TEXT SEARCH DICTIONARY alt_ts_dict2 OWNER TO regress_alter_generic_user3; -- OK
571571
ALTER TEXT SEARCH DICTIONARY alt_ts_dict2 SET SCHEMA alt_nsp2; -- OK
572572
SET SESSION AUTHORIZATION regress_alter_generic_user2;
@@ -578,7 +578,7 @@ ALTER TEXT SEARCH DICTIONARY alt_ts_dict1 RENAME TO alt_ts_dict4; -- OK
578578
ALTER TEXT SEARCH DICTIONARY alt_ts_dict3 OWNER TO regress_alter_generic_user2; -- failed (not owner)
579579
ERROR: must be owner of text search dictionary alt_ts_dict3
580580
ALTER TEXT SEARCH DICTIONARY alt_ts_dict2 OWNER TO regress_alter_generic_user3; -- failed (no role membership)
581-
ERROR: must be member of role "regress_alter_generic_user3"
581+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
582582
ALTER TEXT SEARCH DICTIONARY alt_ts_dict3 SET SCHEMA alt_nsp2; -- failed (not owner)
583583
ERROR: must be owner of text search dictionary alt_ts_dict3
584584
ALTER TEXT SEARCH DICTIONARY alt_ts_dict2 SET SCHEMA alt_nsp2; -- failed (name conflict)
@@ -607,7 +607,7 @@ ALTER TEXT SEARCH CONFIGURATION alt_ts_conf1 RENAME TO alt_ts_conf2; -- failed
607607
ERROR: text search configuration "alt_ts_conf2" already exists in schema "alt_nsp1"
608608
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf1 RENAME TO alt_ts_conf3; -- OK
609609
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf2 OWNER TO regress_alter_generic_user2; -- failed (no role membership)
610-
ERROR: must be member of role "regress_alter_generic_user2"
610+
ERROR: must be able to SET ROLE "regress_alter_generic_user2"
611611
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf2 OWNER TO regress_alter_generic_user3; -- OK
612612
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf2 SET SCHEMA alt_nsp2; -- OK
613613
SET SESSION AUTHORIZATION regress_alter_generic_user2;
@@ -619,7 +619,7 @@ ALTER TEXT SEARCH CONFIGURATION alt_ts_conf1 RENAME TO alt_ts_conf4; -- OK
619619
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf3 OWNER TO regress_alter_generic_user2; -- failed (not owner)
620620
ERROR: must be owner of text search configuration alt_ts_conf3
621621
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf2 OWNER TO regress_alter_generic_user3; -- failed (no role membership)
622-
ERROR: must be member of role "regress_alter_generic_user3"
622+
ERROR: must be able to SET ROLE "regress_alter_generic_user3"
623623
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf3 SET SCHEMA alt_nsp2; -- failed (not owner)
624624
ERROR: must be owner of text search configuration alt_ts_conf3
625625
ALTER TEXT SEARCH CONFIGURATION alt_ts_conf2 SET SCHEMA alt_nsp2; -- failed (name conflict)

contrib/pax_storage/src/test/regress/expected/aocs_sample.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ CREATE VIEW test_aocs_tablesample_append_v2 AS
112112
--------+---------+-----------+----------+---------+---------+-------------
113113
id | integer | | | | plain |
114114
View definition:
115-
SELECT test_aocs_tablesample_append.id
115+
SELECT id
116116
FROM test_aocs_tablesample_append TABLESAMPLE system ((10 * 2)) REPEATABLE (2);
117117

118118
\d+ test_aocs_tablesample_append_v2
@@ -121,7 +121,7 @@ View definition:
121121
--------+---------+-----------+----------+---------+---------+-------------
122122
id | integer | | | | plain |
123123
View definition:
124-
SELECT test_aocs_tablesample_append.id
124+
SELECT id
125125
FROM test_aocs_tablesample_append TABLESAMPLE system (99);
126126

127127
-- check a sampled query doesn't affect cursor in progress

contrib/pax_storage/src/test/regress/expected/appendonly_sample.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ CREATE VIEW test_tablesample_append_v2 AS
112112
--------+---------+-----------+----------+---------+---------+-------------
113113
id | integer | | | | plain |
114114
View definition:
115-
SELECT test_tablesample_append.id
115+
SELECT id
116116
FROM test_tablesample_append TABLESAMPLE system ((10 * 2)) REPEATABLE (2);
117117

118118
\d+ test_tablesample_append_v2
@@ -121,7 +121,7 @@ View definition:
121121
--------+---------+-----------+----------+---------+---------+-------------
122122
id | integer | | | | plain |
123123
View definition:
124-
SELECT test_tablesample_append.id
124+
SELECT id
125125
FROM test_tablesample_append TABLESAMPLE system (99);
126126

127127
-- check a sampled query doesn't affect cursor in progress

contrib/pax_storage/src/test/regress/expected/collate.out

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -195,18 +195,18 @@ CREATE VIEW collview2 AS SELECT a, b FROM collate_test1 ORDER BY b COLLATE "C";
195195
CREATE VIEW collview3 AS SELECT a, lower((x || x) COLLATE "POSIX") FROM collate_test10;
196196
SELECT table_name, view_definition FROM information_schema.views
197197
WHERE table_name LIKE 'collview%' ORDER BY 1;
198-
table_name | view_definition
199-
------------+------------------------------------------------------------------------------
200-
collview1 | SELECT collate_test1.a, +
201-
| collate_test1.b +
202-
| FROM collate_test1 +
203-
| WHERE ((collate_test1.b COLLATE "C") >= 'bbc'::text);
204-
collview2 | SELECT collate_test1.a, +
205-
| collate_test1.b +
206-
| FROM collate_test1 +
207-
| ORDER BY (collate_test1.b COLLATE "C");
208-
collview3 | SELECT collate_test10.a, +
209-
| lower(((collate_test10.x || collate_test10.x) COLLATE "POSIX")) AS lower+
198+
table_name | view_definition
199+
------------+------------------------------------------------
200+
collview1 | SELECT a, +
201+
| b +
202+
| FROM collate_test1 +
203+
| WHERE ((b COLLATE "C") >= 'bbc'::text);
204+
collview2 | SELECT a, +
205+
| b +
206+
| FROM collate_test1 +
207+
| ORDER BY (b COLLATE "C");
208+
collview3 | SELECT a, +
209+
| lower(((x || x) COLLATE "POSIX")) AS lower+
210210
| FROM collate_test10;
211211
(3 rows)
212212

@@ -709,7 +709,7 @@ SELECT c1+1 AS c1p FROM
709709
--------+---------+-----------+----------+---------+---------+-------------
710710
c1p | integer | | | | plain |
711711
View definition:
712-
SELECT ss.c1 + 1 AS c1p
712+
SELECT c1 + 1 AS c1p
713713
FROM ( SELECT 4 AS c1) ss;
714714

715715
--

0 commit comments

Comments
 (0)