(self, native_boolean)
| 1453 | as true/false compilation.""" |
| 1454 | |
| 1455 | def _dialect(self, native_boolean): |
| 1456 | d = default.DefaultDialect() |
| 1457 | d.supports_native_boolean = native_boolean |
| 1458 | return d |
| 1459 | |
| 1460 | def test_one(self): |
| 1461 | c = column("x", Boolean) |
no outgoing calls
no test coverage detected