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
0d72b2d0
Commit
0d72b2d0
authored
Jul 18, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'const' decorations are fine, but not when they're inserted without
bothering to clean up the resulting warnings ...
parent
29d35d5a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/commands/command.c
src/backend/commands/command.c
+2
-2
src/include/commands/command.h
src/include/commands/command.h
+2
-2
No files found.
src/backend/commands/command.c
View file @
0d72b2d0
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.9
0 2000/07/15 12:37:14 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.9
1 2000/07/18 03:57:33 tgl
Exp $
*
* NOTES
* The PerformAddAttribute() code, like most of the relation
...
...
@@ -1076,7 +1076,7 @@ AlterTableDropColumn(const char *relationName,
* ALTER TABLE ADD CONSTRAINT
*/
void
AlterTableAddConstraint
(
c
onst
c
har
*
relationName
,
AlterTableAddConstraint
(
char
*
relationName
,
bool
inh
,
Node
*
newConstraint
)
{
char
rulequery
[
41
+
NAMEDATALEN
];
...
...
src/include/commands/command.h
View file @
0d72b2d0
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: command.h,v 1.2
1 2000/07/05 12:45:31 wieck
Exp $
* $Id: command.h,v 1.2
2 2000/07/18 03:57:32 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -51,7 +51,7 @@ extern void AlterTableDropColumn(const char *relationName,
bool
inh
,
const
char
*
colName
,
int
behavior
);
extern
void
AlterTableAddConstraint
(
c
onst
c
har
*
relationName
,
extern
void
AlterTableAddConstraint
(
char
*
relationName
,
bool
inh
,
Node
*
newConstraint
);
extern
void
AlterTableDropConstraint
(
const
char
*
relationName
,
...
...
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