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
7d9504d4
Commit
7d9504d4
authored
May 14, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pg_varaiable removal cleanup found from regression.
parent
783fbdab
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
55 deletions
+3
-55
src/backend/catalog/Makefile
src/backend/catalog/Makefile
+2
-2
src/include/catalog/pg_attribute.h
src/include/catalog/pg_attribute.h
+1
-12
src/include/catalog/pg_variable.h
src/include/catalog/pg_variable.h
+0
-41
No files found.
src/backend/catalog/Makefile
View file @
7d9504d4
...
...
@@ -2,7 +2,7 @@
#
# Makefile for catalog
#
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.3
3 2001/05/14 20:30:19
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.3
4 2001/05/14 21:58:10
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -23,7 +23,7 @@ SUBSYS.o: $(OBJS)
GLOBAL_BKI_SRCS
:=
$(
addprefix
$(top_srcdir)
/src/include/catalog/,
\
pg_database.h pg_
variable.h pg_
shadow.h pg_group.h pg_log.h
\
pg_database.h pg_shadow.h pg_group.h pg_log.h
\
)
TEMPLATE1_BKI_SRCS
:=
$(
addprefix
$(top_srcdir)
/src/include/catalog/,
\
...
...
src/include/catalog/pg_attribute.h
View file @
7d9504d4
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_attribute.h,v 1.7
1 2001/05/07 00:43:24 tgl
Exp $
* $Id: pg_attribute.h,v 1.7
2 2001/05/14 21:58:10 momjian
Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -527,17 +527,6 @@ DATA(insert OID = 0 ( 1219 xmax 28 0 4 -5 0 -1 -1 t p f i f f));
DATA
(
insert
OID
=
0
(
1219
cmax
29
0
4
-
6
0
-
1
-
1
t
p
f
i
f
f
));
DATA
(
insert
OID
=
0
(
1219
tableoid
26
0
4
-
7
0
-
1
-
1
t
p
f
i
f
f
));
/* ----------------
* pg_variable - this relation is modified by special purpose access
* method code. The following is garbage but is needed
* so that the reldesc code works properly.
* ----------------
*/
#define Schema_pg_variable \
{ 1264, {"varfoo"}, 26, 0, 4, 1, 0, -1, -1, true, 'p', false, 'i', false, false }
DATA
(
insert
OID
=
0
(
1264
varfoo
26
0
4
1
0
-
1
-
1
t
p
f
i
f
f
));
/* ----------------
* pg_log - this relation is modified by special purpose access
* method code. The following is garbage but is needed
...
...
src/include/catalog/pg_variable.h
deleted
100644 → 0
View file @
783fbdab
/*-------------------------------------------------------------------------
*
* pg_variable.h
* the system variable relation "pg_variable" is not a "heap" relation.
* it is automatically created by the transam/ code and the
* information here is all bogus and is just here to make the
* relcache code happy.
*
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_variable.h,v 1.8 2001/01/24 19:43:23 momjian Exp $
*
* NOTES
* The structures and macros used by the transam/ code
* to access pg_variable should someday go here -cim 6/18/90
*
*-------------------------------------------------------------------------
*/
#ifndef PG_VARIABLE_H
#define PG_VARIABLE_H
/* ----------------
* postgres.h contains the system type definintions and the
* CATALOG(), BOOTSTRAP and DATA() sugar words so this file
* can be read by both genbki.sh and the C compiler.
* ----------------
*/
CATALOG
(
pg_variable
)
BOOTSTRAP
{
Oid
varfoo
;
}
FormData_pg_variable
;
typedef
FormData_pg_variable
*
Form_pg_variable
;
#define Natts_pg_variable 1
#define Anum_pg_variable_varfoo 1
#endif
/* PG_VARIABLE_H */
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