Skip to content

Commit 0b72b38

Browse files
committed
Fix rebase issue
1 parent 3c72055 commit 0b72b38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/arcticdb/version_store/_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2545,8 +2545,8 @@ def _adapt_frame_data(self, frame_data, norm):
25452545
table = pa.Table.from_arrays([])
25462546
else:
25472547
table = pa.Table.from_batches(record_batches)
2548-
data = self._normalizer.denormalize(table, read_result.norm)
2549-
if read_result.norm.HasField("custom"):
2548+
data = self._normalizer.denormalize(table, norm)
2549+
if norm.HasField("custom"):
25502550
raise ArcticDbNotYetImplemented(
25512551
"Denormalizing custom normalized data is not supported with Arrow output_format"
25522552
)

0 commit comments

Comments
 (0)