(table: string, columns: Column[], whereClause?: Record<string, any>)
| 133 | } |
| 134 | |
| 135 | async getTotalRows(table: string, columns: Column[], whereClause?: Record<string, any>): Promise<number> { |
| 136 | await this.ensureConnected() |
| 137 | return this.wrappedEngine?.getTotalRows(table, columns, whereClause) ?? 0 |
| 138 | } |
| 139 | |
| 140 | async getRows(table: string, columns: Column[], limit: number, offset: number, whereClause?: Record<string, any>): Promise<QueryResponse | undefined> { |
| 141 | await this.ensureConnected() |
nothing calls this directly
no test coverage detected