(collectionId: string, alias: string)
| 726 | */ |
| 727 | export class WhereClauseConversionError extends QueryOptimizerError { |
| 728 | constructor(collectionId: string, alias: string) { |
| 729 | super( |
| 730 | `Failed to convert WHERE clause to collection filter for collection '${collectionId}' alias '${alias}'. This indicates a bug in the query optimization logic.`, |
| 731 | ) |
| 732 | } |
| 733 | } |
| 734 | |
| 735 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected