@@ -18,6 +18,7 @@ WARNING: DO NOT edit .pxi FILE directly, .pxi is generated from .pxi.in
1818
1919dtypes = [('Float64', 'float64', 'float64_t'),
2020 ('Int64', 'int64', 'int64_t'),
21+ ('Int8', 'int8', 'int8_t'),
2122 ('String', 'string', 'char *'),
2223 ('UInt64', 'uint64', 'uint64_t')]
2324}}
@@ -62,7 +63,9 @@ cdef inline bint needs_resize(vector_data *data) nogil:
6263# name, dtype, arg, idtype
6364dtypes = [('Float64', 'float64', 'float64_t', 'np.float64'),
6465 ('UInt64', 'uint64', 'uint64_t', 'np.uint64'),
65- ('Int64', 'int64', 'int64_t', 'np.int64')]
66+ ('Int64', 'int64', 'int64_t', 'np.int64'),
67+ ('Int8', 'int8', 'int8_t', 'np.int8'),
68+ ]
6669
6770}}
6871
@@ -251,7 +254,9 @@ cdef class HashTable:
251254# name, dtype, float_group, default_na_value
252255dtypes = [('Float64', 'float64', True, 'nan'),
253256 ('UInt64', 'uint64', False, 0),
254- ('Int64', 'int64', False, 'iNaT')]
257+ ('Int64', 'int64', False, 'iNaT'),
258+ ('Int8', 'int8', False, 'iNaT'),
259+ ]
255260
256261def get_dispatch(dtypes):
257262 for (name, dtype, float_group, default_na_value) in dtypes:
0 commit comments