Skip to main content
Module

x/pgsql_ast_parser/index.ts>ExprCall

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

Properties

type: "call"
function: QName

Function name

args: Expr[]

Arguments list

optional
distinct: "all" | "distinct"

[AGGREGATION FUNCTIONS] Distinct clause specified ?

optional
orderBy: OrderByStatement[] | nil

[AGGREGATION FUNCTIONS] Inner order by clause

optional
filter: Expr | nil

[AGGREGATION FUNCTIONS] Filter clause

optional
over: CallOver | nil

[AGGREGATION FUNCTIONS] OVER clause