/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/commands/schemacmds.h
28 строк
887 B
Tom Lane
Don't try to re-order the subcommands of CREATE SCHEMA.
06 апр 2026, 22:16
06 апр 2026, 22:16
a9c350d
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * schemacmds.h * prototypes for schemacmds.c. * * * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/commands/schemacmds.h * *------------------------------------------------------------------------- */ #ifndef SCHEMACMDS_H #define SCHEMACMDS_H #include "catalog/objectaddress.h" #include "parser/parse_node.h" extern Oid CreateSchemaCommand(ParseState *pstate, CreateSchemaStmt *stmt, int stmt_location, int stmt_len); extern ObjectAddress RenameSchema(const char *oldname, const char *newname); extern ObjectAddress AlterSchemaOwner(const char *name, Oid newOwnerId); extern void AlterSchemaOwner_oid(Oid schemaoid, Oid newOwnerId); #endif /* SCHEMACMDS_H */