diff options
| author | Bruce Momjian | 1997-11-25 22:07:18 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1997-11-25 22:07:18 +0000 |
| commit | 4a5b781d71b61887fd312112d75979f250bf723f (patch) | |
| tree | 315803e512d9e978301311a92866a8b6f17a592d /src/backend/tcop | |
| parent | 3aff4011c735faa747ce94d20da6fd9f85144955 (diff) | |
Break parser functions into smaller files, group together.
Diffstat (limited to 'src/backend/tcop')
| -rw-r--r-- | src/backend/tcop/aclchk.c | 6 | ||||
| -rw-r--r-- | src/backend/tcop/postgres.c | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/backend/tcop/aclchk.c b/src/backend/tcop/aclchk.c index 0b8a49f1882..0021213365c 100644 --- a/src/backend/tcop/aclchk.c +++ b/src/backend/tcop/aclchk.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.19 1997/11/24 05:08:47 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.20 1997/11/25 22:06:08 momjian Exp $ * * NOTES * See acl.h. @@ -31,10 +31,12 @@ #include "catalog/pg_operator.h" #include "catalog/pg_aggregate.h" #include "catalog/pg_proc.h" +#include "catalog/pg_type.h" #include "catalog/pg_user.h" +#include "parser/parse_agg.h" +#include "parser/parse_func.h" #include "utils/syscache.h" #include "utils/tqual.h" -#include "parser/catalog_utils.h" #include "fmgr.h" static int32 aclcheck(Acl *acl, AclId id, AclIdType idtype, AclMode mode); diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 7659d90275c..d0d134e331a 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.54 1997/11/10 15:24:55 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.55 1997/11/25 22:06:14 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -45,11 +45,10 @@ #include "lib/dllist.h" -#include "parser/catalog_utils.h" -#include "parser/parse_query.h" /* for MakeTimeRange() */ #include "commands/async.h" #include "tcop/tcopprot.h" /* where declarations for this file go */ #include "optimizer/planner.h" +#include "parser/parser.h" #include "tcop/tcopprot.h" #include "tcop/tcopdebug.h" @@ -1341,7 +1340,7 @@ PostgresMain(int argc, char *argv[]) if (IsUnderPostmaster == false) { puts("\nPOSTGRES backend interactive interface"); - puts("$Revision: 1.54 $ $Date: 1997/11/10 15:24:55 $"); + puts("$Revision: 1.55 $ $Date: 1997/11/25 22:06:14 $"); } /* ---------------- |
