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
195f78e4
Commit
195f78e4
authored
Nov 21, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More archive cleanup.
parent
043cebce
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
28 deletions
+7
-28
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+1
-3
src/include/parser/parsetree.h
src/include/parser/parsetree.h
+1
-10
src/include/utils/rel.h
src/include/utils/rel.h
+1
-3
src/interfaces/libpgtcl/pgtclCmds.c
src/interfaces/libpgtcl/pgtclCmds.c
+4
-12
No files found.
src/include/nodes/parsenodes.h
View file @
195f78e4
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: parsenodes.h,v 1.3
2 1997/11/21 18:12:28
momjian Exp $
* $Id: parsenodes.h,v 1.3
3 1997/11/21 19:12:25
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -62,8 +62,6 @@ typedef struct Query
...
@@ -62,8 +62,6 @@ typedef struct Query
/* internal to planner */
/* internal to planner */
List
*
base_relation_list_
;
/* base relation list */
List
*
base_relation_list_
;
/* base relation list */
List
*
join_relation_list_
;
/* list of relations generated by
List
*
join_relation_list_
;
/* list of relations generated by
* joins */
bool
query_is_archival_
;
/* archival query flag */
} Query;
} Query;
...
...
src/include/parser/parsetree.h
View file @
195f78e4
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: parsetree.h,v 1.
3 1997/09/07 04:59:3
8 momjian Exp $
* $Id: parsetree.h,v 1.
4 1997/11/21 19:12:2
8 momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -30,16 +30,7 @@
...
@@ -30,16 +30,7 @@
* ^^^^^^^^^^
* ^^^^^^^^^^
* range table:
* range table:
* (rtentry ...)
* (rtentry ...)
*
* rtentry:
* rtentry:
* note: this might be wrong, I don't understand how
* rt_time / rt_archive_time work together. anyways it
* looks something like:
*
* (relname ? relid timestuff flags rulelocks)
* or (new/cur relname relid timestuff flags rulelocks)
*
* someone who knows more should correct this -cim 6/9/91
* ----------------
* ----------------
*/
*/
...
...
src/include/utils/rel.h
View file @
195f78e4
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: rel.h,v 1.1
3 1997/10/28 15:11:43 vadim
Exp $
* $Id: rel.h,v 1.1
4 1997/11/21 19:12:32 momjian
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -77,8 +77,6 @@ typedef Relation *RelationPtr;
...
@@ -77,8 +77,6 @@ typedef Relation *RelationPtr;
#define InvalidRelation ((Relation)NULL)
#define InvalidRelation ((Relation)NULL)
typedef
char
ArchiveMode
;
/*
/*
* RelationIsValid --
* RelationIsValid --
* True iff relation descriptor is valid.
* True iff relation descriptor is valid.
...
...
src/interfaces/libpgtcl/pgtclCmds.c
View file @
195f78e4
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.1
8 1997/10/30 17:29:57
momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.1
9 1997/11/21 19:12:41
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -1000,7 +1000,7 @@ Pg_lo_creat
...
@@ -1000,7 +1000,7 @@ Pg_lo_creat
syntax:
syntax:
pg_lo_creat conn mode
pg_lo_creat conn mode
mode can be any OR'ing together of INV_READ, INV_WRITE
, and INV_ARCHIVE,
mode can be any OR'ing together of INV_READ, INV_WRITE
for now, we don't support any additional storage managers.
for now, we don't support any additional storage managers.
***********************************/
***********************************/
...
@@ -1038,14 +1038,10 @@ Pg_lo_creat(ClientData cData, Tcl_Interp * interp, int argc, char *argv[])
...
@@ -1038,14 +1038,10 @@ Pg_lo_creat(ClientData cData, Tcl_Interp * interp, int argc, char *argv[])
{
{
mode
=
INV_WRITE
;
mode
=
INV_WRITE
;
}
}
else
if
(
strcmp
(
modeWord
,
"INV_ARCHIVE"
)
==
0
)
{
mode
=
INV_ARCHIVE
;
}
else
else
{
{
Tcl_AppendResult
(
interp
,
Tcl_AppendResult
(
interp
,
"invalid mode argument to Pg_lo_creat
\n
mode argument must be some OR'd combination of INV_READ,
INV_WRITE, and INV_ARCHIV
E"
,
"invalid mode argument to Pg_lo_creat
\n
mode argument must be some OR'd combination of INV_READ,
and INV_WRIT
E"
,
0
);
0
);
return
TCL_ERROR
;
return
TCL_ERROR
;
}
}
...
@@ -1060,14 +1056,10 @@ Pg_lo_creat(ClientData cData, Tcl_Interp * interp, int argc, char *argv[])
...
@@ -1060,14 +1056,10 @@ Pg_lo_creat(ClientData cData, Tcl_Interp * interp, int argc, char *argv[])
{
{
mode
|=
INV_WRITE
;
mode
|=
INV_WRITE
;
}
}
else
if
(
strcmp
(
modeWord
,
"INV_ARCHIVE"
)
==
0
)
{
mode
|=
INV_ARCHIVE
;
}
else
else
{
{
Tcl_AppendResult
(
interp
,
Tcl_AppendResult
(
interp
,
"invalid mode argument to Pg_lo_creat
\n
mode argument must be some OR'd combination of INV_READ,
INV_WRITE, and INV_ARCHIV
E"
,
"invalid mode argument to Pg_lo_creat
\n
mode argument must be some OR'd combination of INV_READ,
and INV_WRIT
E"
,
0
);
0
);
return
TCL_ERROR
;
return
TCL_ERROR
;
}
}
...
...
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