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

Method _enable_indexing_in_queries

tables/table.py:1228–1237  ·  view source on GitHub ↗

Allow queries to use indexing. *Use only for testing.*

(self)

Source from the content-addressed store, hash-verified

1226 self._enabled_indexing_in_queries = False
1227
1228 def _enable_indexing_in_queries(self) -> None:
1229 """Allow queries to use indexing.
1230
1231 *Use only for testing.*
1232
1233 """
1234 if self._enabled_indexing_in_queries:
1235 return # already enabled
1236 self._condition_cache.unnail()
1237 self._enabled_indexing_in_queries = True
1238
1239 def _required_expr_vars(
1240 self,

Callers 4

test09aMethod · 0.80
test09bMethod · 0.80
test09cMethod · 0.80
test09dMethod · 0.80

Calls 1

unnailMethod · 0.80

Tested by 4

test09aMethod · 0.64
test09bMethod · 0.64
test09cMethod · 0.64
test09dMethod · 0.64