Skip to content

Commit 0bf997e

Browse files
committed
better default error message for WriteArrowTimestamps
1 parent 415b8af commit 0bf997e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/parquet/column_writer.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ class TypedColumnWriterImpl : public ColumnWriterImpl,
13991399
Status WriteArrowTimestamps(const int16_t* def_levels, const int16_t* rep_levels,
14001400
int64_t num_levels, const ::arrow::Array& values,
14011401
ArrowWriteContext* ctx, bool maybe_parent_nulls) {
1402-
return Status::NotImplemented("Timestamps writing not implemented");
1402+
return Status::NotImplemented("Timestamps writing is only implemented for Int64Type");
14031403
}
14041404

14051405
void WriteDictionaryPage() override {

0 commit comments

Comments
 (0)