Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit 15f9839

Browse files
xhochywesm
authored andcommitted
PARQUET-1093: Improve Arrow level generation error message
Author: Korn, Uwe <Uwe.Korn@blue-yonder.com> Closes #390 from xhochy/PARQUET-1093 and squashes the following commits: 433e391 [Korn, Uwe] PARQUET-1093: Improve Arrow level generation error message
1 parent 3b34f02 commit 15f9839

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/parquet/arrow/writer.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ class LevelBuilder {
9191
return VisitInline(*array.values());
9292
}
9393

94-
#define NOT_IMPLEMENTED_VISIT(ArrowTypePrefix) \
95-
Status Visit(const ::arrow::ArrowTypePrefix##Array& array) { \
96-
return Status::NotImplemented( \
97-
"Level generation for ArrowTypePrefix not supported yet"); \
94+
#define NOT_IMPLEMENTED_VISIT(ArrowTypePrefix) \
95+
Status Visit(const ::arrow::ArrowTypePrefix##Array& array) { \
96+
return Status::NotImplemented("Level generation for " #ArrowTypePrefix \
97+
" not supported yet"); \
9898
}
9999

100100
NOT_IMPLEMENTED_VISIT(Struct)

0 commit comments

Comments
 (0)