Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
04ab0cb5
Commit
04ab0cb5
authored
21 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Remove some no-longer-needed #includes.
parent
adc507f2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/parser/gram.y
+4
-7
4 additions, 7 deletions
src/backend/parser/gram.y
src/backend/parser/scan.l
+2
-6
2 additions, 6 deletions
src/backend/parser/scan.l
with
6 additions
and
13 deletions
src/backend/parser/gram.y
+
4
−
7
View file @
04ab0cb5
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.46
4
2004/06/28 0
0
:1
8:47
tgl Exp $
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.46
5
2004/06/28 0
1
:1
9:11
tgl Exp $
*
*
* HISTORY
* HISTORY
* AUTHOR DATE MAJOR EVENT
* AUTHOR DATE MAJOR EVENT
...
@@ -51,18 +51,15 @@
...
@@ -51,18 +51,15 @@
#include <ctype.h>
#include <ctype.h>
#include <limits.h>
#include <limits.h>
#include "access/htup.h"
#include "catalog/index.h"
#include "catalog/index.h"
#include "catalog/namespace.h"
#include "catalog/namespace.h"
#include "catalog/pg_type.h"
#include "nodes/makefuncs.h"
#include "nodes/makefuncs.h"
#include "nodes/params.h"
#include "nodes/parsenodes.h"
#include "parser/gramparse.h"
#include "parser/gramparse.h"
#include "storage/lmgr.h"
#include "storage/lmgr.h"
#include "utils/numeric.h"
#include "utils/datetime.h"
#include "utils/date.h"
#include "utils/date.h"
#include "utils/datetime.h"
#include "utils/numeric.h"
extern List *parsetree; /* final parse result is delivered here */
extern List *parsetree; /* final parse result is delivered here */
...
...
This diff is collapsed.
Click to expand it.
src/backend/parser/scan.l
+
2
−
6
View file @
04ab0cb5
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.11
5
2004/0
2
/2
4 21:45
:1
8
tgl Exp $
* $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.11
6
2004/0
6
/2
8 01:19
:1
1
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -18,19 +18,15 @@
...
@@ -18,19 +18,15 @@
#include <ctype.h>
#include <ctype.h>
#include <unistd.h>
#include <unistd.h>
#include <errno.h>
#include "miscadmin.h"
#include "nodes/parsenodes.h"
#include "nodes/pg_list.h"
#include "parser/gramparse.h"
#include "parser/gramparse.h"
#include "parser/keywords.h"
#include "parser/keywords.h"
/* Not needed now that this file is compiled as part of gram.y */
/* Not needed now that this file is compiled as part of gram.y */
/* #include "parser/parse.h" */
/* #include "parser/parse.h" */
#include "parser/scansup.h"
#include "parser/scansup.h"
#include "utils/builtins.h"
#include "mb/pg_wchar.h"
#include "mb/pg_wchar.h"
/* Avoid exit() on fatal scanner errors (a bit ugly -- see yy_fatal_error) */
/* Avoid exit() on fatal scanner errors (a bit ugly -- see yy_fatal_error) */
#define fprintf(file, fmt, msg) ereport(ERROR, (errmsg_internal("%s", msg)))
#define fprintf(file, fmt, msg) ereport(ERROR, (errmsg_internal("%s", msg)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment