@@ -18,6 +18,7 @@ WARNING: DO NOT edit .pxi FILE directly, .pxi is generated from .pxi.in
18
18
19
19
dtypes = [('Float64', 'float64', 'float64_t'),
20
20
('Int64', 'int64', 'int64_t'),
21
+ ('Int8', 'int8', 'int8_t'),
21
22
('String', 'string', 'char *'),
22
23
('UInt64', 'uint64', 'uint64_t')]
23
24
}}
@@ -62,7 +63,9 @@ cdef inline bint needs_resize(vector_data *data) nogil:
62
63
# name, dtype, arg, idtype
63
64
dtypes = [('Float64', 'float64', 'float64_t', 'np.float64'),
64
65
('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
+ ]
66
69
67
70
}}
68
71
@@ -251,7 +254,9 @@ cdef class HashTable:
251
254
# name, dtype, float_group, default_na_value
252
255
dtypes = [('Float64', 'float64', True, 'nan'),
253
256
('UInt64', 'uint64', False, 0),
254
- ('Int64', 'int64', False, 'iNaT')]
257
+ ('Int64', 'int64', False, 'iNaT'),
258
+ ('Int8', 'int8', False, 'iNaT'),
259
+ ]
255
260
256
261
def get_dispatch(dtypes):
257
262
for (name, dtype, float_group, default_na_value) in dtypes:
0 commit comments