()
| 471 | |
| 472 | export class UnsupportedRootScalarSelectError extends QueryCompilationError { |
| 473 | constructor() { |
| 474 | super( |
| 475 | `Top-level scalar select() is not supported by createLiveQueryCollection() or queryOnce(). ` + |
| 476 | `Return an object from .select(), or use the scalar query inside toArray(...) or concat(toArray(...)).`, |
| 477 | ) |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | export class HavingRequiresGroupByError extends QueryCompilationError { |
nothing calls this directly
no outgoing calls
no test coverage detected