MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / boolean_col_expressions

Method boolean_col_expressions

test/requirements.py:211–218  ·  view source on GitHub ↗

Target database must support boolean expressions as columns

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

skip_ifFunction · 0.90
no_supportFunction · 0.85

Tested by

no test coverage detected