aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/command.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-07-18 03:57:33 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-07-18 03:57:33 +0000
commit0d72b2d060c12967a9320bad48bc9a100ff7534a (patch)
tree969c0a5874d7cf0ef7067a5a6b2a082d672f5a5f /src/include/commands/command.h
parent29d35d5a34343ac135a9bcaa4817ec4ac8755289 (diff)
downloadpostgresql-0d72b2d060c12967a9320bad48bc9a100ff7534a.tar.gz
postgresql-0d72b2d060c12967a9320bad48bc9a100ff7534a.zip
'const' decorations are fine, but not when they're inserted without
bothering to clean up the resulting warnings ...
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r--src/include/commands/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h
index b2b3d6383fd..e83b30a0ef6 100644
--- a/src/include/commands/command.h
+++ b/src/include/commands/command.h
@@ -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.21 2000/07/05 12:45:31 wieck Exp $
+ * $Id: command.h,v 1.22 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(const char *relationName,
+extern void AlterTableAddConstraint(char *relationName,
bool inh, Node *newConstraint);
extern void AlterTableDropConstraint(const char *relationName,