mirror of
https://github.com/postgres/postgres.git
synced 2025-08-21 10:42:50 +03:00
140 lines
5.6 KiB
C
140 lines
5.6 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* defrem.h
|
|
* POSTGRES define and remove utility definitions.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/commands/defrem.h,v 1.88 2008/01/01 19:45:57 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DEFREM_H
|
|
#define DEFREM_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
|
|
/* commands/indexcmds.c */
|
|
extern void DefineIndex(RangeVar *heapRelation,
|
|
char *indexRelationName,
|
|
Oid indexRelationId,
|
|
char *accessMethodName,
|
|
char *tableSpaceName,
|
|
List *attributeList,
|
|
Expr *predicate,
|
|
List *options,
|
|
bool unique,
|
|
bool primary,
|
|
bool isconstraint,
|
|
bool is_alter_table,
|
|
bool check_rights,
|
|
bool skip_build,
|
|
bool quiet,
|
|
bool concurrent);
|
|
extern void RemoveIndex(RangeVar *relation, DropBehavior behavior);
|
|
extern void ReindexIndex(RangeVar *indexRelation);
|
|
extern void ReindexTable(RangeVar *relation);
|
|
extern void ReindexDatabase(const char *databaseName,
|
|
bool do_system, bool do_user);
|
|
extern char *makeObjectName(const char *name1, const char *name2,
|
|
const char *label);
|
|
extern char *ChooseRelationName(const char *name1, const char *name2,
|
|
const char *label, Oid namespace);
|
|
extern Oid GetDefaultOpClass(Oid type_id, Oid am_id);
|
|
|
|
/* commands/functioncmds.c */
|
|
extern void CreateFunction(CreateFunctionStmt *stmt);
|
|
extern void RemoveFunction(RemoveFuncStmt *stmt);
|
|
extern void RemoveFunctionById(Oid funcOid);
|
|
extern void SetFunctionReturnType(Oid funcOid, Oid newRetType);
|
|
extern void SetFunctionArgType(Oid funcOid, int argIndex, Oid newArgType);
|
|
extern void RenameFunction(List *name, List *argtypes, const char *newname);
|
|
extern void AlterFunctionOwner(List *name, List *argtypes, Oid newOwnerId);
|
|
extern void AlterFunctionOwner_oid(Oid procOid, Oid newOwnerId);
|
|
extern void AlterFunction(AlterFunctionStmt *stmt);
|
|
extern void CreateCast(CreateCastStmt *stmt);
|
|
extern void DropCast(DropCastStmt *stmt);
|
|
extern void DropCastById(Oid castOid);
|
|
extern void AlterFunctionNamespace(List *name, List *argtypes, bool isagg,
|
|
const char *newschema);
|
|
|
|
/* commands/operatorcmds.c */
|
|
extern void DefineOperator(List *names, List *parameters);
|
|
extern void RemoveOperator(RemoveFuncStmt *stmt);
|
|
extern void RemoveOperatorById(Oid operOid);
|
|
extern void AlterOperatorOwner(List *name, TypeName *typeName1,
|
|
TypeName *typename2, Oid newOwnerId);
|
|
extern void AlterOperatorOwner_oid(Oid operOid, Oid newOwnerId);
|
|
|
|
/* commands/aggregatecmds.c */
|
|
extern void DefineAggregate(List *name, List *args, bool oldstyle,
|
|
List *parameters);
|
|
extern void RemoveAggregate(RemoveFuncStmt *stmt);
|
|
extern void RenameAggregate(List *name, List *args, const char *newname);
|
|
extern void AlterAggregateOwner(List *name, List *args, Oid newOwnerId);
|
|
|
|
/* commands/opclasscmds.c */
|
|
extern void DefineOpClass(CreateOpClassStmt *stmt);
|
|
extern void DefineOpFamily(CreateOpFamilyStmt *stmt);
|
|
extern void AlterOpFamily(AlterOpFamilyStmt *stmt);
|
|
extern void RemoveOpClass(RemoveOpClassStmt *stmt);
|
|
extern void RemoveOpFamily(RemoveOpFamilyStmt *stmt);
|
|
extern void RemoveOpClassById(Oid opclassOid);
|
|
extern void RemoveOpFamilyById(Oid opfamilyOid);
|
|
extern void RemoveAmOpEntryById(Oid entryOid);
|
|
extern void RemoveAmProcEntryById(Oid entryOid);
|
|
extern void RenameOpClass(List *name, const char *access_method, const char *newname);
|
|
extern void RenameOpFamily(List *name, const char *access_method, const char *newname);
|
|
extern void AlterOpClassOwner(List *name, const char *access_method, Oid newOwnerId);
|
|
extern void AlterOpFamilyOwner(List *name, const char *access_method, Oid newOwnerId);
|
|
|
|
/* commands/tsearchcmds.c */
|
|
extern void DefineTSParser(List *names, List *parameters);
|
|
extern void RenameTSParser(List *oldname, const char *newname);
|
|
extern void RemoveTSParser(List *names, DropBehavior behavior,
|
|
bool missing_ok);
|
|
extern void RemoveTSParserById(Oid prsId);
|
|
|
|
extern void DefineTSDictionary(List *names, List *parameters);
|
|
extern void RenameTSDictionary(List *oldname, const char *newname);
|
|
extern void RemoveTSDictionary(List *names, DropBehavior behavior,
|
|
bool missing_ok);
|
|
extern void RemoveTSDictionaryById(Oid dictId);
|
|
extern void AlterTSDictionary(AlterTSDictionaryStmt *stmt);
|
|
extern void AlterTSDictionaryOwner(List *name, Oid newOwnerId);
|
|
|
|
extern void DefineTSTemplate(List *names, List *parameters);
|
|
extern void RenameTSTemplate(List *oldname, const char *newname);
|
|
extern void RemoveTSTemplate(List *names, DropBehavior behavior,
|
|
bool missing_ok);
|
|
extern void RemoveTSTemplateById(Oid tmplId);
|
|
|
|
extern void DefineTSConfiguration(List *names, List *parameters);
|
|
extern void RenameTSConfiguration(List *oldname, const char *newname);
|
|
extern void RemoveTSConfiguration(List *names, DropBehavior behavior,
|
|
bool missing_ok);
|
|
extern void RemoveTSConfigurationById(Oid cfgId);
|
|
extern void AlterTSConfiguration(AlterTSConfigurationStmt *stmt);
|
|
extern void AlterTSConfigurationOwner(List *name, Oid newOwnerId);
|
|
|
|
extern text *serialize_deflist(List *deflist);
|
|
extern List *deserialize_deflist(Datum txt);
|
|
|
|
/* support routines in commands/define.c */
|
|
|
|
extern char *case_translate_language_name(const char *input);
|
|
|
|
extern char *defGetString(DefElem *def);
|
|
extern double defGetNumeric(DefElem *def);
|
|
extern bool defGetBoolean(DefElem *def);
|
|
extern int64 defGetInt64(DefElem *def);
|
|
extern List *defGetQualifiedName(DefElem *def);
|
|
extern TypeName *defGetTypeName(DefElem *def);
|
|
extern int defGetTypeLength(DefElem *def);
|
|
extern DefElem *defWithOids(bool value);
|
|
|
|
#endif /* DEFREM_H */
|