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
31a697bf
Commit
31a697bf
authored
Jan 09, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Yohoo UNIONS of VIEWS.
parent
8f125413
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
17 deletions
+38
-17
src/backend/nodes/copyfuncs.c
src/backend/nodes/copyfuncs.c
+14
-12
src/backend/rewrite/rewriteHandler.c
src/backend/rewrite/rewriteHandler.c
+7
-3
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+17
-2
No files found.
src/backend/nodes/copyfuncs.c
View file @
31a697bf
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.2
7 1998/01/04 04:31:02
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.2
8 1998/01/09 05:48:10
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1520,6 +1520,16 @@ _copyQuery(Query *from)
int
i
;
newnode
->
commandType
=
from
->
commandType
;
if
(
from
->
utilityStmt
&&
nodeTag
(
from
->
utilityStmt
)
==
T_NotifyStmt
)
{
NotifyStmt
*
from_notify
=
(
NotifyStmt
*
)
from
->
utilityStmt
;
NotifyStmt
*
n
=
makeNode
(
NotifyStmt
);
int
length
=
strlen
(
from_notify
->
relname
);
n
->
relname
=
palloc
(
length
+
1
);
strcpy
(
n
->
relname
,
from_notify
->
relname
);
newnode
->
utilityStmt
=
(
Node
*
)
n
;
}
newnode
->
resultRelation
=
from
->
resultRelation
;
/* probably should dup this string instead of just pointing */
/* to the old one --djm */
...
...
@@ -1532,17 +1542,8 @@ _copyQuery(Query *from)
newnode
->
into
=
(
char
*
)
0
;
}
newnode
->
isPortal
=
from
->
isPortal
;
Node_Copy
(
from
,
newnode
,
rtable
);
if
(
from
->
utilityStmt
&&
nodeTag
(
from
->
utilityStmt
)
==
T_NotifyStmt
)
{
NotifyStmt
*
from_notify
=
(
NotifyStmt
*
)
from
->
utilityStmt
;
NotifyStmt
*
n
=
makeNode
(
NotifyStmt
);
int
length
=
strlen
(
from_notify
->
relname
);
n
->
relname
=
palloc
(
length
+
1
);
strcpy
(
n
->
relname
,
from_notify
->
relname
);
newnode
->
utilityStmt
=
(
Node
*
)
n
;
}
newnode
->
isBinary
=
from
->
isBinary
;
newnode
->
unionall
=
from
->
unionall
;
if
(
from
->
uniqueFlag
)
{
newnode
->
uniqueFlag
=
(
char
*
)
palloc
(
strlen
(
from
->
uniqueFlag
)
+
1
);
...
...
@@ -1551,6 +1552,7 @@ _copyQuery(Query *from)
else
newnode
->
uniqueFlag
=
NULL
;
Node_Copy
(
from
,
newnode
,
sortClause
);
Node_Copy
(
from
,
newnode
,
rtable
);
Node_Copy
(
from
,
newnode
,
targetList
);
Node_Copy
(
from
,
newnode
,
qual
);
...
...
src/backend/rewrite/rewriteHandler.c
View file @
31a697bf
...
...
@@ -6,7 +6,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.
9 1998/01/07 21:04:3
7 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.
10 1998/01/09 05:48:1
7 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -598,8 +598,12 @@ RewriteQuery(Query *parsetree, bool *instead_flag, List **qual_products)
*/
Query
*
other
;
other
=
copyObject
(
parsetree
);
/* ApplyRetrieveRule changes the
* range table */
/*
* ApplyRetrieveRule changes the range table
* XXX Unions are copied again.
*/
other
=
copyObject
(
parsetree
);
return
ProcessRetrieveQuery
(
other
,
parsetree
->
rtable
,
instead_flag
,
FALSE
);
...
...
src/backend/tcop/postgres.c
View file @
31a697bf
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.
59 1998/01/07 21:06:00
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.
60 1998/01/09 05:48:22
momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
...
...
@@ -439,6 +439,8 @@ pg_parse_and_plan(char *query_string, /* string to execute */
* rewrites */
for
(
i
=
0
;
i
<
querytree_list
->
len
;
i
++
)
{
List
*
union_result
,
*
union_list
,
*
rewritten_list
;
querytree
=
querytree_list
->
qtrees
[
i
];
...
...
@@ -465,6 +467,19 @@ pg_parse_and_plan(char *query_string, /* string to execute */
/* rewrite queries (retrieve, append, delete, replace) */
rewritten
=
QueryRewrite
(
querytree
);
/*
* Rewrite the UNIONS.
*/
foreach
(
rewritten_list
,
rewritten
)
{
Query
*
qry
=
(
Query
*
)
lfirst
(
rewritten_list
);
union_result
=
NIL
;
foreach
(
union_list
,
qry
->
unionClause
)
union_result
=
nconc
(
union_result
,
QueryRewrite
((
Query
*
)
lfirst
(
union_list
)));
qry
->
unionClause
=
union_result
;
}
if
(
rewritten
!=
NULL
)
{
int
len
,
...
...
@@ -1372,7 +1387,7 @@ PostgresMain(int argc, char *argv[])
if
(
IsUnderPostmaster
==
false
)
{
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"$Revision: 1.
59 $ $Date: 1998/01/07 21:06:00
$"
);
puts
(
"$Revision: 1.
60 $ $Date: 1998/01/09 05:48:22
$"
);
}
/* ----------------
...
...
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