mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix another const-decoration mismatch, per Magnus.
This commit is contained in:
parent
a894a83381
commit
848692131a
@ -7,7 +7,7 @@
|
|||||||
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/include/commands/schemacmds.h,v 1.13 2006/03/05 15:58:55 momjian Exp $
|
* $PostgreSQL: pgsql/src/include/commands/schemacmds.h,v 1.14 2006/04/09 22:01:19 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -24,6 +24,6 @@ extern void RemoveSchemaById(Oid schemaOid);
|
|||||||
|
|
||||||
extern void RenameSchema(const char *oldname, const char *newname);
|
extern void RenameSchema(const char *oldname, const char *newname);
|
||||||
extern void AlterSchemaOwner(const char *name, Oid newOwnerId);
|
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 */
|
#endif /* SCHEMACMDS_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user