( expression: BasicExpression<boolean>, )
| 294 | * Create a residual Where clause from an expression |
| 295 | */ |
| 296 | export function createResidualWhere( |
| 297 | expression: BasicExpression<boolean>, |
| 298 | ): Where { |
| 299 | return { expression, residual: true } |
| 300 | } |
| 301 | |
| 302 | function getRefFromAlias( |
| 303 | query: QueryIR, |
no outgoing calls
no test coverage detected