~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/include/commands/proclang.h

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * proclang.h
 
4
 *        prototypes for proclang.c.
 
5
 *
 
6
 *
 
7
 *-------------------------------------------------------------------------
 
8
 */
 
9
#ifndef PROCLANG_H
 
10
#define PROCLANG_H
 
11
 
 
12
#include "nodes/parsenodes.h"
 
13
 
 
14
extern void CreateProceduralLanguage(CreatePLangStmt *stmt);
 
15
extern void DropProceduralLanguage(DropPLangStmt *stmt);
 
16
extern void DropProceduralLanguageById(Oid langOid);
 
17
extern void RenameLanguage(const char *oldname, const char *newname);
 
18
 
 
19
#endif   /* PROCLANG_H */