(value: CaseWhenValue | undefined)
| 812 | } |
| 813 | |
| 814 | function isConditionValue(value: CaseWhenValue | undefined): boolean { |
| 815 | return isExpressionValue(value) && !Array.isArray(value) |
| 816 | } |
| 817 | |
| 818 | /** |
| 819 | * Materialize an includes subquery into a plain value on the parent row. |
no test coverage detected
searching dependent graphs…