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
9db64857
Commit
9db64857
authored
Jan 05, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move variable.c to commands/ and aclchk.c to catalog/.
parent
deea69b9
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
13 deletions
+13
-13
src/backend/catalog/Makefile
src/backend/catalog/Makefile
+2
-2
src/backend/catalog/aclchk.c
src/backend/catalog/aclchk.c
+1
-1
src/backend/commands/Makefile
src/backend/commands/Makefile
+3
-2
src/backend/commands/variable.c
src/backend/commands/variable.c
+2
-2
src/backend/tcop/Makefile
src/backend/tcop/Makefile
+2
-2
src/backend/tcop/utility.c
src/backend/tcop/utility.c
+2
-2
src/include/utils/acl.h
src/include/utils/acl.h
+1
-2
No files found.
src/backend/catalog/Makefile
View file @
9db64857
...
...
@@ -4,7 +4,7 @@
# Makefile for catalog
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.
7 1997/12/20 00:23:26 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.
8 1998/01/05 18:42:39 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,7 +15,7 @@ INCLUDE_OPT = -I..
CFLAGS
+=
$(INCLUDE_OPT)
OBJS
=
catalog.o heap.o index.o indexing.o
\
OBJS
=
catalog.o heap.o index.o indexing.o
aclchk.o
\
pg_aggregate.o pg_operator.o pg_proc.o pg_type.o
all
:
SUBSYS.o global1.bki.source local1_template1.bki.source
\
...
...
src/backend/
tcop
/aclchk.c
→
src/backend/
catalog
/aclchk.c
View file @
9db64857
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/
tcop/Attic/aclchk.c,v 1.22 1998/01/05 16:39:3
0 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/
catalog/aclchk.c,v 1.1 1998/01/05 18:42:4
0 momjian Exp $
*
* NOTES
* See acl.h.
...
...
src/backend/commands/Makefile
View file @
9db64857
...
...
@@ -4,7 +4,7 @@
# Makefile for commands
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.1
0 1997/12/20 00:23:32 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.1
1 1998/01/05 18:42:45 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -17,7 +17,8 @@ CFLAGS+=$(INCLUDE_OPT)
OBJS
=
async.o creatinh.o command.o copy.o defind.o define.o
\
remove.o rename.o vacuum.o version.o view.o cluster.o
\
recipe.o explain.o sequence.o trigger.o user.o proclang.o dbcommands.o
recipe.o explain.o sequence.o trigger.o user.o proclang.o
\
dbcommands.o variable.o
all
:
SUBSYS.o
...
...
src/backend/
tcop
/variable.c
→
src/backend/
commands
/variable.c
View file @
9db64857
...
...
@@ -2,7 +2,7 @@
* Routines for handling of 'SET var TO',
* 'SHOW var' and 'RESET var' statements.
*
* $Id: variable.c,v 1.
26 1998/01/05 16:39:35
momjian Exp $
* $Id: variable.c,v 1.
1 1998/01/05 18:42:50
momjian Exp $
*
*/
...
...
@@ -12,7 +12,7 @@
#include <time.h>
#include "postgres.h"
#include "miscadmin.h"
#include "
tcop
/variable.h"
#include "
commands
/variable.h"
#include "utils/builtins.h"
#include "optimizer/internal.h"
...
...
src/backend/tcop/Makefile
View file @
9db64857
...
...
@@ -4,7 +4,7 @@
# Makefile for tcop
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.1
4 1997/12/20 00:28:06 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.1
5 1998/01/05 18:42:59 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -19,7 +19,7 @@ ifeq ($(CC), gcc)
CFLAGS
+=
-Wno-error
endif
OBJS
=
aclchk.o dest.o fastpath.o postgres.o pquery.o utility.o variable
.o
OBJS
=
dest.o fastpath.o postgres.o pquery.o utility
.o
all
:
SUBSYS.o
...
...
src/backend/tcop/utility.c
View file @
9db64857
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.3
5 1998/01/05 16:39:32
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.3
6 1998/01/05 18:43:09
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -35,6 +35,7 @@
#include "commands/explain.h"
#include "commands/trigger.h"
#include "commands/proclang.h"
#include "commands/variable.h"
#include "nodes/parsenodes.h"
#include "../backend/parser/parse.h"
...
...
@@ -45,7 +46,6 @@
#include "rewrite/rewriteDefine.h"
#include "tcop/tcopdebug.h"
#include "tcop/dest.h"
#include "tcop/variable.h"
#include "tcop/utility.h"
#include "fmgr.h"
/* For load_file() */
#include "storage/fd.h"
...
...
src/include/utils/acl.h
View file @
9db64857
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: acl.h,v 1.1
1 1997/09/08 21:54:47
momjian Exp $
* $Id: acl.h,v 1.1
2 1998/01/05 18:43:18
momjian Exp $
*
* NOTES
* For backward-compatability purposes we have to allow there
...
...
@@ -162,7 +162,6 @@ extern void ChangeAcl(char *relname, AclItem *mod_aip, unsigned modechg);
extern
AclId
get_grosysid
(
char
*
groname
);
extern
char
*
get_groname
(
AclId
grosysid
);
/* XXX move these elsewhere -pma */
extern
int32
pg_aclcheck
(
char
*
relname
,
char
*
usename
,
AclMode
mode
);
extern
int32
pg_ownercheck
(
char
*
usename
,
char
*
value
,
int
cacheid
);
extern
int32
...
...
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