Access doesn't allow for Yes/No columns to store null, so add
a rule for this.
Change-Id: If9316cd05733e39fbd59a6f54024f6740b563041
return exclusions.closed()
+ @property
+ def nullable_booleans(self):
+ """Target database allows boolean columns to store NULL."""
+
+ return exclusions.open()
+
@property
def nullsordering(self):
"""Target backends that support nulls ordering."""
eq_(row, (True, False))
assert isinstance(row[0], bool)
+ @testing.requires.nullable_booleans
def test_null(self):
boolean_table = self.tables.boolean_table