Skip to content

Commit 43e8f4b

Browse files
authored
1 parent d36945a commit 43e8f4b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiohttp~=3.8
2-
v3io~=0.6.9
2+
v3io~=0.6.10
33
# exclude pandas 1.5.0 due to https://github.com/pandas-dev/pandas/issues/48767
44
# and 1.5.* due to https://github.com/pandas-dev/pandas/issues/49203
55
# pandas 2.2 requires sqlalchemy 2

storey/drivers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,9 @@ def _build_simplified_feature_store_request(self, aggregation_element):
532532

533533
if use_parallel:
534534
for attr_name, d in pexpressions.items():
535-
encoded_array = kv_array.encode_list(d["values"][d["first_index"] : d["last_index"] + 1])
535+
encoded_array = kv_array.encode_list(d["values"][d["first_index"] : d["last_index"] + 1]).decode(
536+
"utf-8"
537+
)
536538
paggregate = self.parallel_aggregates[d["aggregation"]]
537539
sliced_array = f'{attr_name}[{d["first_index"]}..{d["last_index"]}]'
538540
expressions.append(f"{sliced_array}={paggregate}({sliced_array}, blob('{encoded_array}'))")

0 commit comments

Comments
 (0)