Target database must support boolean expressions as columns
(self)
| 209 | |
| 210 | @property |
| 211 | def boolean_col_expressions(self): |
| 212 | """Target database must support boolean expressions as columns""" |
| 213 | return skip_if( |
| 214 | [ |
| 215 | no_support("oracle", "not supported by database"), |
| 216 | no_support("mssql", "not supported by database"), |
| 217 | ] |
| 218 | ) |
| 219 | |
| 220 | @property |
| 221 | def non_native_boolean_unconstrained(self): |
nothing calls this directly
no test coverage detected