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 36af8e32ecd [parquet](timestamp) Fix wrong timestamp type (#63246)
36af8e32ecd is described below
commit 36af8e32ecdc120bcc053e950de415dcb40ed7d9
Author: Gabriel <[email protected]>
AuthorDate: Thu May 21 10:23:00 2026 +0800
[parquet](timestamp) Fix wrong timestamp type (#63246)
### What problem does this PR solve?
Introduced by #62241
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]