You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*
- * src/include/commands/proclang.h
- *
- *-------------------------------------------------------------------------
- *
- * proclang.h
- * prototypes for proclang.c.
- *
- *
- *-------------------------------------------------------------------------
- */
- #ifndef PROCLANG_H
- #define PROCLANG_H
-
- #include "catalog/objectaddress.h"
- #include "nodes/parsenodes.h"
-
- extern ObjectAddress CreateProceduralLanguage(CreatePLangStmt *stmt);
- extern void DropProceduralLanguageById(Oid langOid);
- extern bool PLTemplateExists(const char *languageName);
- extern Oid get_language_oid(const char *langname, bool missing_ok);
-
- #endif /* PROCLANG_H */
|