summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2006-04-09 22:01:19 +0000
committerTom Lane2006-04-09 22:01:19 +0000
commit39c7d62ecbae37c1304e0ae3e2cd59116034f6a0 (patch)
tree2d82064b3abe956330256d8bbfd0ceab8b7a352c
parentf8dc60d730a1b657a4947426fba504f5c16187fe (diff)
Fix another const-decoration mismatch, per Magnus.
-rw-r--r--src/include/commands/schemacmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/commands/schemacmds.h b/src/include/commands/schemacmds.h
index 80041b8fa2..97412886fe 100644
--- a/src/include/commands/schemacmds.h
+++ b/src/include/commands/schemacmds.h
@@ -24,6 +24,6 @@ extern void RemoveSchemaById(Oid schemaOid);
extern void RenameSchema(const char *oldname, const char *newname);
extern void AlterSchemaOwner(const char *name, Oid newOwnerId);
-extern void AlterSchemaOwner_oid(const Oid schemaOid, Oid newOwnerId);
+extern void AlterSchemaOwner_oid(Oid schemaOid, Oid newOwnerId);
#endif /* SCHEMACMDS_H */