Skip to main content
Module

x/pgsql_ast_parser/mod.ts>CreateFunctionStatement

Yet another simple Postgres SQL parser
Go to Latest
interface CreateFunctionStatement
implements PGNode
import { type CreateFunctionStatement } from "https://deno.land/x/pgsql_ast_parser@10.5.2/mod.ts";

Properties

type: "create function"
name: QName
optional
code: string
optional
orReplace: boolean
optional
language: Name
arguments: FunctionArgument[]
optional
returns: DataTypeDef | ReturnsTable
optional
purity: "immutable" | "stable" | "volatile"
optional
leakproof: boolean
optional
onNullInput: "call" | "null" | "strict"