Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e9e0f78b
Commit
e9e0f78b
authored
Oct 11, 2017
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix whitespace
parent
f4128ab4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/test/regress/expected/partition_join.out
src/test/regress/expected/partition_join.out
+1
-1
src/test/regress/sql/partition_join.sql
src/test/regress/sql/partition_join.sql
+1
-1
No files found.
src/test/regress/expected/partition_join.out
View file @
e9e0f78b
...
@@ -1257,7 +1257,7 @@ SELECT t1.a, t1.c, t2.b, t2.c FROM (SELECT * FROM prt1 WHERE a = 1 AND a = 2) t1
...
@@ -1257,7 +1257,7 @@ SELECT t1.a, t1.c, t2.b, t2.c FROM (SELECT * FROM prt1 WHERE a = 1 AND a = 2) t1
(14 rows)
(14 rows)
--
--
-- multiple levels of partitioning
-- multiple levels of partitioning
--
--
CREATE TABLE prt1_l (a int, b int, c varchar) PARTITION BY RANGE(a);
CREATE TABLE prt1_l (a int, b int, c varchar) PARTITION BY RANGE(a);
CREATE TABLE prt1_l_p1 PARTITION OF prt1_l FOR VALUES FROM (0) TO (250);
CREATE TABLE prt1_l_p1 PARTITION OF prt1_l FOR VALUES FROM (0) TO (250);
...
...
src/test/regress/sql/partition_join.sql
View file @
e9e0f78b
...
@@ -230,7 +230,7 @@ EXPLAIN (COSTS OFF)
...
@@ -230,7 +230,7 @@ EXPLAIN (COSTS OFF)
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
;
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
;
--
--
-- multiple levels of partitioning
-- multiple levels of partitioning
--
--
CREATE
TABLE
prt1_l
(
a
int
,
b
int
,
c
varchar
)
PARTITION
BY
RANGE
(
a
);
CREATE
TABLE
prt1_l
(
a
int
,
b
int
,
c
varchar
)
PARTITION
BY
RANGE
(
a
);
CREATE
TABLE
prt1_l_p1
PARTITION
OF
prt1_l
FOR
VALUES
FROM
(
0
)
TO
(
250
);
CREATE
TABLE
prt1_l_p1
PARTITION
OF
prt1_l
FOR
VALUES
FROM
(
0
)
TO
(
250
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment