(table: string, columns: Column[], whereClause?: Record<string, any>)
| 162 | } |
| 163 | |
| 164 | async getTotalRows(table: string, columns: Column[], whereClause?: Record<string, any>): Promise<number> { |
| 165 | return SqlService.getTotalRows(this, 'postgres', this.connection, table, columns, whereClause); |
| 166 | } |
| 167 | |
| 168 | async getRows(table: string, columns: Column[], limit: number, offset: number, whereClause?: Record<string, any>): Promise<QueryResponse | undefined> { |
| 169 | return SqlService.getRows(this, 'postgres', this.connection, table, columns, limit, offset, whereClause); |
nothing calls this directly
no test coverage detected