PostgreSQL Source Code git master
Loading...
Searching...
No Matches
schemacmds.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * schemacmds.h
4 * prototypes for schemacmds.c.
5 *
6 *
7 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/commands/schemacmds.h
11 *
12 *-------------------------------------------------------------------------
13 */
14
15#ifndef SCHEMACMDS_H
16#define SCHEMACMDS_H
17
19#include "nodes/parsenodes.h"
20
22 const char *queryString,
23 int stmt_location, int stmt_len);
24
25extern ObjectAddress RenameSchema(const char *oldname, const char *newname);
28
29#endif /* SCHEMACMDS_H */
#define stmt
unsigned int Oid
static int fb(int x)
Oid CreateSchemaCommand(CreateSchemaStmt *stmt, const char *queryString, int stmt_location, int stmt_len)
Definition schemacmds.c:52
void AlterSchemaOwner_oid(Oid schemaoid, Oid newOwnerId)
Definition schemacmds.c:308
ObjectAddress AlterSchemaOwner(const char *name, Oid newOwnerId)
Definition schemacmds.c:331
ObjectAddress RenameSchema(const char *oldname, const char *newname)
Definition schemacmds.c:250
const char * name