Reindex
tablite.reindex
Classes
Functions
tablite.reindex.reindex(T, index, names=None, tqdm=_tqdm, pbar=None)
Constant Memory helper for reindexing pages.
Memory usage is set by datatype and Config.PAGE_SIZE
PARAMETER | DESCRIPTION |
---|---|
T |
subclass of Table
TYPE:
|
index |
int64.
TYPE:
|
names |
list of names from T to reindex.
TYPE:
|
tqdm |
Defaults to _tqdm.
TYPE:
|
pbar |
Defaults to None.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
_type_
|
description |
Source code in tablite/reindex.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
|