firebird-cubejs-driver
Version:
CubeJS Firebird Driver
19 lines • 724 B
TypeScript
import { BaseFilter, BaseQuery, ParamAllocator } from "@cubejs-backend/schema-compiler";
declare class FirebirdParamAllocator extends ParamAllocator {
paramPlaceHolder(paramIndex: any): string;
}
declare class FirebirdFilter extends BaseFilter {
/**
* "ILIKE" does't support
*/
likeIgnoreCase(column: any, not: any, param: any, type: any): string;
}
export declare class FirebirdQuery extends BaseQuery {
sqlTemplates(): any;
newParamAllocator(expressionParams: any): FirebirdParamAllocator;
protected limitOffsetClause(limit: any, offset: any): string;
castToString(sql: any): string;
newFilter(filter: any): FirebirdFilter;
}
export {};
//# sourceMappingURL=FirebirdQuery.d.ts.map