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

Function create_indexes_table

tables/table.py:242–250  ·  view source on GitHub ↗

Create indexes for a table.

(table: Table)

Source from the content-addressed store, hash-verified

240
241
242def create_indexes_table(table: Table) -> IndexesTableG:
243 """Create indexes for a table."""
244 itgroup = IndexesTableG(
245 table._v_parent,
246 _index_name_of(table),
247 "Indexes container for table " + table._v_pathname,
248 new=True,
249 )
250 return itgroup
251
252
253def create_indexes_descr(

Callers 2

_column__create_indexFunction · 0.85
autoindexMethod · 0.85

Calls 2

IndexesTableGClass · 0.85
_index_name_ofFunction · 0.85

Tested by

no test coverage detected