Skip to main content

Class: RowsFrom

Defined in: lang-sql/src/ast/select.ts:225

ROWS FROM(...) multi-function table source.

Implements

Constructors

Constructor

new RowsFrom(tableFns, withOrdinality?): RowsFrom

Defined in: lang-sql/src/ast/select.ts:226

Parameters

ParameterTypeDefault valueDescription
tableFnsTableFn[]undefinedThe set-returning functions whose rows are zipped together.
withOrdinalitybooleanfalsetrue when WITH ORDINALITY appends an ordinal column.

Returns

RowsFrom

Properties

tableFns

tableFns: TableFn[]

Defined in: lang-sql/src/ast/select.ts:228

The set-returning functions whose rows are zipped together.


withOrdinality

withOrdinality: boolean = false

Defined in: lang-sql/src/ast/select.ts:230

true when WITH ORDINALITY appends an ordinal column.

Methods

accept()

accept<Ret, Arg>(visitor, arg?): Ret

Defined in: lang-sql/src/ast/select.ts:233

Dispatches this node to the matching method on visitor.

Type Parameters

Type Parameter
Ret
Arg

Parameters

ParameterType
visitorSQLVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept