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
4aa0e645
Commit
4aa0e645
authored
Feb 23, 1999
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
First tests using JOIN syntax.
parent
348ab948
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
182 additions
and
0 deletions
+182
-0
src/test/regress/expected/join.out
src/test/regress/expected/join.out
+94
-0
src/test/regress/sql/join.sql
src/test/regress/sql/join.sql
+87
-0
src/test/regress/sql/tests
src/test/regress/sql/tests
+1
-0
No files found.
src/test/regress/expected/join.out
0 → 100644
View file @
4aa0e645
QUERY: CREATE TABLE JOIN_TBL (
i integer,
j integer,
x text
);
QUERY: CREATE TABLE JOIN2_TBL (
i integer,
k integer
);
QUERY: INSERT INTO JOIN_TBL VALUES (1, 3, 'one');
QUERY: INSERT INTO JOIN_TBL VALUES (2, 2, 'two');
QUERY: INSERT INTO JOIN_TBL VALUES (3, 1, 'three');
QUERY: INSERT INTO JOIN_TBL VALUES (4, 0, 'four');
QUERY: INSERT INTO JOIN2_TBL VALUES (1, -1);
QUERY: INSERT INTO JOIN2_TBL VALUES (2, 2);
QUERY: INSERT INTO JOIN2_TBL VALUES (3, -3);
QUERY: INSERT INTO JOIN2_TBL VALUES (2, 4);
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL CROSS JOIN JOIN2_TBL;
xxx|i|j|x |i| k
---+-+-+-----+-+--
|1|3|one |1|-1
|2|2|two |1|-1
|3|1|three|1|-1
|4|0|four |1|-1
|1|3|one |2| 2
|2|2|two |2| 2
|3|1|three|2| 2
|4|0|four |2| 2
|1|3|one |3|-3
|2|2|two |3|-3
|3|1|three|3|-3
|4|0|four |3|-3
|1|3|one |2| 4
|2|2|two |2| 4
|3|1|three|2| 4
|4|0|four |2| 4
(16 rows)
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL NATURAL JOIN JOIN2_TBL;
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL INNER JOIN JOIN2_TBL USING (i);
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL JOIN JOIN2_TBL ON (JOIN_TBL.i = JOIN2_TBL.i);
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL JOIN JOIN2_TBL ON (JOIN_TBL.i = JOIN2_TBL.k);
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL CROSS JOIN JOIN2_TBL;
xxx|i|j|x |i| k
---+-+-+-----+-+--
|1|3|one |1|-1
|2|2|two |1|-1
|3|1|three|1|-1
|4|0|four |1|-1
|1|3|one |2| 2
|2|2|two |2| 2
|3|1|three|2| 2
|4|0|four |2| 2
|1|3|one |3|-3
|2|2|two |3|-3
|3|1|three|3|-3
|4|0|four |3|-3
|1|3|one |2| 4
|2|2|two |2| 4
|3|1|three|2| 4
|4|0|four |2| 4
(16 rows)
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL JOIN JOIN2_TBL ON (JOIN_TBL.i <= JOIN2_TBL.k);
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL OUTER JOIN JOIN2_TBL USING (i);
NOTICE: OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL LEFT OUTER JOIN JOIN2_TBL USING (i);
NOTICE: LEFT OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL RIGHT OUTER JOIN JOIN2_TBL USING (i);
NOTICE: RIGHT OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
QUERY: SELECT '' AS "xxx", *
FROM JOIN_TBL FULL OUTER JOIN JOIN2_TBL USING (i);
NOTICE: FULL OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
QUERY: DROP TABLE JOIN_TBL;
QUERY: DROP TABLE JOIN2_TBL;
src/test/regress/sql/join.sql
0 → 100644
View file @
4aa0e645
--
-- join.sql
--
-- Test join clauses
--
CREATE
TABLE
JOIN_TBL
(
i
integer
,
j
integer
,
x
text
);
CREATE
TABLE
JOIN2_TBL
(
i
integer
,
k
integer
);
INSERT
INTO
JOIN_TBL
VALUES
(
1
,
3
,
'one'
);
INSERT
INTO
JOIN_TBL
VALUES
(
2
,
2
,
'two'
);
INSERT
INTO
JOIN_TBL
VALUES
(
3
,
1
,
'three'
);
INSERT
INTO
JOIN_TBL
VALUES
(
4
,
0
,
'four'
);
INSERT
INTO
JOIN2_TBL
VALUES
(
1
,
-
1
);
INSERT
INTO
JOIN2_TBL
VALUES
(
2
,
2
);
INSERT
INTO
JOIN2_TBL
VALUES
(
3
,
-
3
);
INSERT
INTO
JOIN2_TBL
VALUES
(
2
,
4
);
--
-- Inner joins (equi-joins)
--
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
CROSS
JOIN
JOIN2_TBL
;
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
NATURAL
JOIN
JOIN2_TBL
;
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
INNER
JOIN
JOIN2_TBL
USING
(
i
);
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
JOIN
JOIN2_TBL
ON
(
JOIN_TBL
.
i
=
JOIN2_TBL
.
i
);
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
JOIN
JOIN2_TBL
ON
(
JOIN_TBL
.
i
=
JOIN2_TBL
.
k
);
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
CROSS
JOIN
JOIN2_TBL
;
--
-- Non-equi-joins
--
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
JOIN
JOIN2_TBL
ON
(
JOIN_TBL
.
i
<=
JOIN2_TBL
.
k
);
--
-- Outer joins
--
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
OUTER
JOIN
JOIN2_TBL
USING
(
i
);
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
LEFT
OUTER
JOIN
JOIN2_TBL
USING
(
i
);
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
RIGHT
OUTER
JOIN
JOIN2_TBL
USING
(
i
);
SELECT
''
AS
"xxx"
,
*
FROM
JOIN_TBL
FULL
OUTER
JOIN
JOIN2_TBL
USING
(
i
);
--
-- More complicated constructs
--
--
-- Clean up
--
DROP
TABLE
JOIN_TBL
;
DROP
TABLE
JOIN2_TBL
;
src/test/regress/sql/tests
View file @
4aa0e645
...
...
@@ -50,6 +50,7 @@ select_having
subselect
union
case
join
aggregates
transactions
random
...
...
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