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

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


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

commit 615182911733eac6fd9abeb87cb8b59fa6cb402c
Author: daidai <[email protected]>
AuthorDate: Tue May 26 02:10:05 2026 +0800

    branch-4.0:[fix](parquet)fix parquet write timestamp int96 type. (2/2) 
(#61832) (#63597)
    
    ### What problem does this PR solve?
    
    Problem Summary:
    I found that the third-party in branch-4.0 are the same as those in
    master, so I'll just pick this PR for now.
    Part 2 of  pr #61760.
---
 be/src/vec/runtime/vparquet_transformer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/vec/runtime/vparquet_transformer.cpp 
b/be/src/vec/runtime/vparquet_transformer.cpp
index e9f5549b510..5fe4ccab682 100644
--- a/be/src/vec/runtime/vparquet_transformer.cpp
+++ b/be/src/vec/runtime/vparquet_transformer.cpp
@@ -208,7 +208,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