(self, native_boolean)
| 1301 | as true/false compilation.""" |
| 1302 | |
| 1303 | def _dialect(self, native_boolean): |
| 1304 | d = default.DefaultDialect() |
| 1305 | d.supports_native_boolean = native_boolean |
| 1306 | return d |
| 1307 | |
| 1308 | def test_one(self): |
| 1309 | c = column("x", Boolean) |
no outgoing calls
no test coverage detected