(ids: string[])
| 139 | |
| 140 | // ── ClickHouse counting (scoped to a set of session ids for run isolation) ── |
| 141 | const quoteList = (ids: string[]) => |
| 142 | ids.map((id) => `'${id.replace(/'/g, "")}'`).join(','); |
| 143 | |
| 144 | export async function countByName( |
| 145 | sessionIds: string[], |
no test coverage detected