Skip to main content
Module

x/pgsql_ast_parser/mod.ts>CreateIndexStatement

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

Properties

type: "create index"
table: QName
optional
using: Name
expressions: IndexExpression[]
optional
where: Expr
optional
unique: true
optional
ifNotExists: true
optional
indexName: Name
optional
tablespace: string
optional
with: CreateIndexWith[]