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