(placeholderValues?: Record<string, unknown>)
| 175 | } |
| 176 | |
| 177 | async run(placeholderValues?: Record<string, unknown>): Promise<SqliteRemoteResult> { |
| 178 | const params = fillPlaceholders(this.query.params, placeholderValues ?? {}); |
| 179 | this.logger.logQuery(this.query.sql, params); |
| 180 | return await this.queryWithCache(this.query.sql, params, async () => { |
| 181 | return await (this.client as AsyncRemoteCallback)(this.query.sql, params, 'run'); |
| 182 | }); |
| 183 | } |
| 184 | |
| 185 | override mapAllResult(rows: unknown, isFromBatch?: boolean): unknown { |
| 186 | if (isFromBatch) { |
no test coverage detected