mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01:00
performance front, but with feature freeze upon us I think it's time to drive a stake in the ground and say that this will be in 7.5. Alvaro Herrera, with some help from Tom Lane.
51 lines
1.5 KiB
C
51 lines
1.5 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* tablecmds.h
|
|
* prototypes for tablecmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.17 2004/07/01 00:51:40 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef TABLECMDS_H
|
|
#define TABLECMDS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
|
|
extern Oid DefineRelation(CreateStmt *stmt, char relkind);
|
|
|
|
extern void RemoveRelation(const RangeVar *relation, DropBehavior behavior);
|
|
|
|
extern void AlterTable(AlterTableStmt *stmt);
|
|
|
|
extern void AlterTableInternal(Oid relid, List *cmds, bool recurse);
|
|
|
|
extern void AlterTableCreateToastTable(Oid relOid, bool silent);
|
|
|
|
extern void TruncateRelation(const RangeVar *relation);
|
|
|
|
extern void renameatt(Oid myrelid,
|
|
const char *oldattname,
|
|
const char *newattname,
|
|
bool recurse,
|
|
bool recursing);
|
|
|
|
extern void renamerel(Oid myrelid,
|
|
const char *newrelname);
|
|
|
|
extern void register_on_commit_action(Oid relid, OnCommitAction action);
|
|
extern void remove_on_commit_action(Oid relid);
|
|
|
|
extern void PreCommit_on_commit_actions(void);
|
|
extern void AtEOXact_on_commit_actions(bool isCommit, TransactionId xid);
|
|
extern void AtEOSubXact_on_commit_actions(bool isCommit,
|
|
TransactionId childXid,
|
|
TransactionId parentXid);
|
|
|
|
#endif /* TABLECMDS_H */
|