plywood
Version:
A query planner and executor
17 lines • 817 B
TypeScript
import { PlywoodValue } from '../datatypes';
import { SQLDialect } from '../dialect/baseDialect';
import { ChainableExpression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class LookupExpression extends ChainableExpression {
static op: string;
static fromJS(parameters: ExpressionJS): LookupExpression;
lookupFn: string;
constructor(parameters: ExpressionValue);
valueOf(): ExpressionValue;
toJS(): ExpressionJS;
equals(other: LookupExpression | undefined): boolean;
protected _toStringParameters(_indent?: int): string[];
fullyDefined(): boolean;
protected _calcChainableHelper(_operandValue: any): PlywoodValue;
protected _getSQLChainableHelper(dialect: SQLDialect, operandSQL: string): string;
}
//# sourceMappingURL=lookupExpression.d.ts.map