Method
getRows
(table: string, columns: Column[], limit: number, offset: number, whereClause?: Record<string, any>)
Source from the content-addressed store, hash-verified
| 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); |
| 170 | } |
| 171 | |
| 172 | async getVersion(): Promise<string | undefined> { |
| 173 | return undefined |
Callers
nothing calls this directly
Tested by
no test coverage detected