plywood
Version:
A query planner and executor
18 lines • 907 B
TypeScript
import { PlywoodValue } from '../datatypes';
import { SQLDialect } from '../dialect/baseDialect';
import { PlyTypeSingleValue } from '../types';
import { ChainableExpression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class CustomTransformExpression extends ChainableExpression {
static op: string;
static fromJS(parameters: ExpressionJS): CustomTransformExpression;
custom: string;
outputType: PlyTypeSingleValue;
constructor(parameters: ExpressionValue);
valueOf(): ExpressionValue;
toJS(): ExpressionJS;
equals(other: CustomTransformExpression | undefined): boolean;
protected _toStringParameters(_indent?: int): string[];
protected _calcChainableHelper(_operandValue: any): PlywoodValue;
protected _getSQLChainableHelper(_dialect: SQLDialect, _operandSQL: string): string;
}
//# sourceMappingURL=customTransformExpression.d.ts.map