# mapping oid, fmt -> Loader instance
self._loaders_cache: Dict[Tuple[int, Format], "Loader"] = {}
- # mapping oid, fmt -> load function
- self._load_funcs: Dict[Tuple[int, Format], LoadFunc] = {}
-
# sequence of load functions from value to python
# the length of the result columns
self._row_loaders: List[LoadFunc] = []
cdef readonly object connection
cdef readonly str encoding
cdef list _dumpers_maps, _loaders_maps
- cdef dict _dumpers_cache, _loaders_cache, _load_funcs
+ cdef dict _dumpers_cache, _loaders_cache
cdef PGresult _pgresult
cdef int _nfields, _ntuples
# mapping oid, fmt -> Loader instance
self._loaders_cache: Dict[Tuple[int, Format], "Loader"] = {}
- # mapping oid, fmt -> load function
- self._load_funcs: Dict[Tuple[int, Format], "LoadFunc"] = {}
-
self.pgresult = None
self._row_loaders = []