plywood
Version:
A query planner and executor
12 lines • 642 B
TypeScript
import { PlywoodValue } from '../datatypes';
import { SQLDialect } from '../dialect/baseDialect';
import { ChainableExpression, Expression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class AbsoluteExpression extends ChainableExpression {
static op: string;
static fromJS(parameters: ExpressionJS): AbsoluteExpression;
constructor(parameters: ExpressionValue);
protected _calcChainableHelper(operandValue: any): PlywoodValue;
protected _getSQLChainableHelper(dialect: SQLDialect, operandSQL: string): string;
specialSimplify(): Expression;
}
//# sourceMappingURL=absoluteExpression.d.ts.map