(self)
| 9 | |
| 10 | class TestQueryBuilderSchema(unittest.TestCase): |
| 11 | def setUp(self): |
| 12 | self.qb = QueryBuilder(Path('.'), Path('sql/fragments')) |
| 13 | |
| 14 | def test_column_expr_uses_null_when_missing(self): |
| 15 | self.qb.set_schema_info({'syscend': [('duration_ns', 'BIGINT')]}) |
nothing calls this directly
no test coverage detected