(partition: TablePartition)
| 442 | |
| 443 | const expression = unwrapOuterParentheses(rawExpression); |
| 444 | const qualify = (partition: TablePartition) => |
| 445 | partition.schema && partition.schema !== parentSchema ? `${partition.schema}.${partition.name}` : partition.name; |
| 446 | |
| 447 | if (type === 'hash') { |
| 448 | // Collapse to a bare count when catalog names follow the default |
no outgoing calls
no test coverage detected