mirror of
https://github.com/postgres/postgres.git
synced 2025-10-13 18:28:01 +03:00
This has been done historically because of get_database_name (which since commitcb98e6fb8f
belongs in lsyscache.c/h, so let's move it there) and get_database_oid (which is in the right place, but whose declaration should appear in pg_database.h rather than dbcommands.h). Clean this up. Also, xlogreader.h and stringinfo.h are no longer needed by dbcommands.h since commitf1fd515b39
, so remove them. Author: Álvaro Herrera <alvherre@kurilemu.de> Reviewed-by: Bertrand Drouvot <bertranddrouvot.pg@gmail.com> Reviewed-by: Michael Paquier <michael@paquier.xyz> Discussion: https://postgr.es/m/202508191031.5ipojyuaswzt@alvherre.pgsql
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* dbcommands.h
|
|
* Database management commands (create/drop database).
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/commands/dbcommands.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DBCOMMANDS_H
|
|
#define DBCOMMANDS_H
|
|
|
|
#include "catalog/objectaddress.h"
|
|
#include "parser/parse_node.h"
|
|
|
|
extern Oid createdb(ParseState *pstate, const CreatedbStmt *stmt);
|
|
extern void dropdb(const char *dbname, bool missing_ok, bool force);
|
|
extern void DropDatabase(ParseState *pstate, DropdbStmt *stmt);
|
|
extern ObjectAddress RenameDatabase(const char *oldname, const char *newname);
|
|
extern Oid AlterDatabase(ParseState *pstate, AlterDatabaseStmt *stmt, bool isTopLevel);
|
|
extern ObjectAddress AlterDatabaseRefreshColl(AlterDatabaseRefreshCollStmt *stmt);
|
|
extern Oid AlterDatabaseSet(AlterDatabaseSetStmt *stmt);
|
|
extern ObjectAddress AlterDatabaseOwner(const char *dbname, Oid newOwnerId);
|
|
|
|
extern bool have_createdb_privilege(void);
|
|
|
|
extern void check_encoding_locale_matches(int encoding, const char *collate, const char *ctype);
|
|
|
|
#endif /* DBCOMMANDS_H */
|