plywood
Version:
A query planner and executor
15 lines • 830 B
TypeScript
import { PlywoodValue } from '../datatypes';
import { SQLDialect } from '../dialect/baseDialect';
import { ChainableUnaryExpression, Expression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class OrExpression extends ChainableUnaryExpression {
static op: string;
static fromJS(parameters: ExpressionJS): OrExpression;
static merge(ex1: Expression, ex2: Expression): Expression | null;
constructor(parameters: ExpressionValue);
protected _calcChainableUnaryHelper(operandValue: any, expressionValue: any): PlywoodValue;
protected _getSQLChainableUnaryHelper(dialect: SQLDialect, operandSQL: string, expressionSQL: string): string;
isCommutative(): boolean;
isAssociative(): boolean;
protected specialSimplify(): Expression;
}
//# sourceMappingURL=orExpression.d.ts.map