(data: EntityData<Entity>)
| 2554 | const joinedProps = this.driver.joinedProps(meta, this.#state.populate); |
| 2555 | const stack = [] as EntityData<Entity>[]; |
| 2556 | const hash = (data: EntityData<Entity>) => { |
| 2557 | return Utils.getPrimaryKeyHash(meta.primaryKeys.map(pk => data[pk as EntityKey])); |
| 2558 | }; |
| 2559 | |
| 2560 | for await (const row of res) { |
| 2561 | const mapped = this.driver.mapResult<Entity>(row as Entity, meta, this.#state.populate, this as any)!; |
no test coverage detected