From 48123de71792c367313542883f0e9df7d850c994 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 8 Sep 2005 20:07:42 +0000 Subject: Create the pg_pltemplate system catalog to hold template information for procedural languages. This replaces the hard-wired table I had originally proposed as a stopgap solution. For the moment, the initial contents only include languages shipped with the core distribution. --- src/include/commands/proclang.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/commands') diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h index a446773cd4..7f38a8542a 100644 --- a/src/include/commands/proclang.h +++ b/src/include/commands/proclang.h @@ -15,5 +15,6 @@ extern void CreateProceduralLanguage(CreatePLangStmt *stmt); extern void DropProceduralLanguage(DropPLangStmt *stmt); extern void DropProceduralLanguageById(Oid langOid); extern void RenameLanguage(const char *oldname, const char *newname); +extern bool PLTemplateExists(const char *languageName); #endif /* PROCLANG_H */ -- cgit v1.2.1