This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new eb69f5a5544 branch-4.1:[fix](parquet)fix parquet write timestamp int96
type. (2/2) (#61832) (#61847)
eb69f5a5544 is described below
commit eb69f5a5544f3a665685a8625a0de97bc59fbd50
Author: daidai <[email protected]>
AuthorDate: Sun Mar 29 16:07:05 2026 +0800
branch-4.1:[fix](parquet)fix parquet write timestamp int96 type. (2/2)
(#61832) (#61847)
bp #61832
### What problem does this PR solve?
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
### Release note
None
### Check List (For Author)
- Test <!-- At least one of them must be included. -->
- [ ] Regression test
- [ ] Unit Test
- [ ] Manual test (add detailed scripts or steps below)
- [ ] No need to test or manual test. Explain why:
- [ ] This is a refactor/code format and no logic has been changed.
- [ ] Previous test can cover this change.
- [ ] No code files have been changed.
- [ ] Other reason <!-- Add your reason? -->
- Behavior changed:
- [ ] No.
- [ ] Yes. <!-- Explain the behavior change -->
- Does this need documentation?
- [ ] No.
- [ ] Yes. <!-- Add document PR link here. eg:
https://github.com/apache/doris-website/pull/1214 -->
### Check List (For Reviewer who merge this PR)
- [ ] Confirm the release note
- [ ] Confirm test cases
- [ ] Confirm document
- [ ] Add branch pick label <!-- Add branch pick label that this PR
should merge into -->
---
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]