(self, source: str, columns: List[str])
| 125 | return column.lower() in lookup |
| 126 | |
| 127 | def _has_columns(self, source: str, columns: List[str]) -> bool: |
| 128 | return all(self._has_column(source, col) for col in columns) |
| 129 | |
| 130 | def _column_expr(self, source: str, alias: str, column: str, output_alias: str) -> str: |
| 131 | """Return a projection expression respecting schema availability.""" |
no test coverage detected