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