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

Commit e9e0f78

Browse files
committed
Fix whitespace
1 parent f4128ab commit e9e0f78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/partition_join.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ SELECT t1.a, t1.c, t2.b, t2.c FROM (SELECT * FROM prt1 WHERE a = 1 AND a = 2) t1
12571257
(14 rows)
12581258

12591259
--
1260-
-- multiple levels of partitioning
1260+
-- multiple levels of partitioning
12611261
--
12621262
CREATE TABLE prt1_l (a int, b int, c varchar) PARTITION BY RANGE(a);
12631263
CREATE TABLE prt1_l_p1 PARTITION OF prt1_l FOR VALUES FROM (0) TO (250);

src/test/regress/sql/partition_join.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ EXPLAIN (COSTS OFF)
230230
SELECT t1.a, t1.c, t2.b, t2.c FROM (SELECT * FROM prt1 WHERE a = 1 AND a = 2) t1 FULL JOIN prt2 t2 ON t1.a = t2.b WHERE t2.a = 0 ORDER BY t1.a, t2.b;
231231

232232
--
233-
-- multiple levels of partitioning
233+
-- multiple levels of partitioning
234234
--
235235
CREATE TABLE prt1_l (a int, b int, c varchar) PARTITION BY RANGE(a);
236236
CREATE TABLE prt1_l_p1 PARTITION OF prt1_l FOR VALUES FROM (0) TO (250);

0 commit comments

Comments
 (0)