Fix indentation in twophase.c
[pgsql.git] / src / include / commands / schemacmds.h
blobc8c771cef94853e5ea2139c021aeaa67f595745b
1 /*-------------------------------------------------------------------------
3 * schemacmds.h
4 * prototypes for schemacmds.c.
7 * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/commands/schemacmds.h
12 *-------------------------------------------------------------------------
15 #ifndef SCHEMACMDS_H
16 #define SCHEMACMDS_H
18 #include "catalog/objectaddress.h"
19 #include "nodes/parsenodes.h"
21 extern Oid CreateSchemaCommand(CreateSchemaStmt *stmt,
22 const char *queryString,
23 int stmt_location, int stmt_len);
25 extern ObjectAddress RenameSchema(const char *oldname, const char *newname);
26 extern ObjectAddress AlterSchemaOwner(const char *name, Oid newOwnerId);
27 extern void AlterSchemaOwner_oid(Oid schemaoid, Oid newOwnerId);
29 #endif /* SCHEMACMDS_H */