This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 52ef5aab69f [fix](parquet)fix parquet write timestamp int96 type. 
(2/2) (#61832)
52ef5aab69f is described below

commit 52ef5aab69f0f49d8866d590b0a61274ed9d6ac4
Author: daidai <[email protected]>
AuthorDate: Mon Mar 30 10:57:05 2026 +0800

    [fix](parquet)fix parquet write timestamp int96 type. (2/2) (#61832)
    
    ### What problem does this PR solve?
    
    Problem Summary:
    Part 2 of  pr #61760.
---
 be/src/format/transformer/vparquet_transformer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/format/transformer/vparquet_transformer.cpp 
b/be/src/format/transformer/vparquet_transformer.cpp
index fa2d651be8b..4d89261a379 100644
--- a/be/src/format/transformer/vparquet_transformer.cpp
+++ b/be/src/format/transformer/vparquet_transformer.cpp
@@ -209,7 +209,7 @@ Status VParquetTransformer::_parse_properties() {
         //build arrow  writer properties
         ::parquet::ArrowWriterProperties::Builder arrow_builder;
         if (_parquet_options.enable_int96_timestamps) {
-            arrow_builder.enable_deprecated_int96_timestamps();
+            arrow_builder.enable_force_write_int96_timestamps();
         }
         arrow_builder.store_schema();
         _arrow_properties = arrow_builder.build();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to