MCPcopy Create free account
hub / github.com/PyTables/PyTables / dirty

Method dirty

tables/index.py:185–192  ·  view source on GitHub ↗

Whether the index is dirty or not. Dirty indexes are out of sync with column data, so they exist but they are not usable.

(self)

Source from the content-addressed store, hash-verified

183
184 @property
185 def dirty(self) -> bool:
186 """Whether the index is dirty or not.
187
188 Dirty indexes are out of sync with column data, so they exist but they
189 are not usable.
190 """
191 # If there is no ``DIRTY`` attribute, index should be clean.
192 return getattr(self._v_attrs, "DIRTY", False)
193
194 @dirty.setter
195 def dirty(self, dirty: bool) -> None:

Callers

nothing calls this directly

Calls 2

nailMethod · 0.80
unnailMethod · 0.80

Tested by

no test coverage detected