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
12119188
Commit
12119188
authored
Dec 29, 2005
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert some careless search-and-replace: "ADD" in comment text should
not be replaced with "ADD_P".
parent
be6187e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
src/backend/parser/gram.y
src/backend/parser/gram.y
+4
-4
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+3
-3
No files found.
src/backend/parser/gram.y
View file @
12119188
...
...
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.52
0 2005/12/28 01:30:00 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.52
1 2005/12/29 04:53:18 neilc
Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -1304,7 +1304,7 @@ alter_table_cmds:
/* Subcommands that are for ALTER TABLE only */
alter_table_cmd:
/* ALTER TABLE <relation> ADD
_P
[COLUMN] <coldef> */
/* ALTER TABLE <relation> ADD [COLUMN] <coldef> */
ADD_P opt_column columnDef
{
AlterTableCmd *n = makeNode(AlterTableCmd);
...
...
@@ -1377,7 +1377,7 @@ alter_table_cmd:
n->transform = $6;
$$ = (Node *)n;
}
/* ALTER TABLE <relation> ADD
_P
CONSTRAINT ... */
/* ALTER TABLE <relation> ADD CONSTRAINT ... */
| ADD_P TableConstraint
{
AlterTableCmd *n = makeNode(AlterTableCmd);
...
...
@@ -4767,7 +4767,7 @@ AlterDomainStmt:
n->typename = $3;
$$ = (Node *)n;
}
/* ALTER DOMAIN <domain> ADD
_P
CONSTRAINT ... */
/* ALTER DOMAIN <domain> ADD CONSTRAINT ... */
| ALTER DOMAIN_P any_name ADD_P TableConstraint
{
AlterDomainStmt *n = makeNode(AlterDomainStmt);
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
12119188
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.31
4 2005/12/27 04:00:08 momjian
Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.31
5 2005/12/29 04:53:18 neilc
Exp $ */
/* Copyright comment */
%{
...
...
@@ -1245,7 +1245,7 @@ alter_table_cmds:
alter_table_cmd:
ADD_P opt_column columnDef
/* ALTER TABLE <relation> ADD
_P
[COLUMN] <coldef> */
/* ALTER TABLE <relation> ADD [COLUMN] <coldef> */
{ $$ = cat_str(3, make_str("add"), $2, $3); }
/* ALTER TABLE <relation> ALTER [COLUMN] <colname> {SET DEFAULT <expr>|DROP DEFAULT} */
| ALTER opt_column ColId alter_column_default
...
...
@@ -1268,7 +1268,7 @@ alter_table_cmd:
/* ALTER TABLE <relation> ALTER [COLUMN] <colname> TYPE <typename> [ USING <expression> ] */
| ALTER opt_column ColId TYPE_P Typename alter_using
{ $$ = cat_str(6, make_str("alter"), $2, $3, make_str("type"), $5, $6); }
/* ALTER TABLE <relation> ADD
_P
CONSTRAINT ... */
/* ALTER TABLE <relation> ADD CONSTRAINT ... */
| ADD_P TableConstraint
{ $$ = cat_str(2, make_str("add"), $2); }
/* ALTER TABLE <relation> DROP CONSTRAINT ... */
...
...
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