UNPKG

firebird-cubejs-driver

Version:
19 lines 724 B
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