Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/doris
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5e47e461eb00b472839e26e88edf27eecb6e42a8
Choose a base ref
..
head repository: apache/doris
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e2bb504e0c2b4b9949ab79f84b42b963cd0af9ff
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 be/src/exec/es/es_scroll_parser.cpp
4 changes: 2 additions & 2 deletions be/src/exec/es/es_scroll_parser.cpp
Original file line number Diff line number Diff line change
@@ -558,11 +558,11 @@ Status ScrollParser::parse_column(const rapidjson::Value& col, PrimitiveType sub
// see https://github.com/apache/doris/pull/16304
// No need to support date and datetime types.
case TYPE_DATEV2: {
return process_date_column<vectorized::DateV2Value<DateV2ValueType>, uint32_t>(
return process_date_column<vectorized::DateV2Value<vectorized::DateV2ValueType>, uint32_t>(
col, sub_type, pure_doc_value, array, time_zone);
}
case TYPE_DATETIMEV2: {
return process_date_column<vectorized::DateV2Value<DateTimeV2ValueType>, uint64_t>(
return process_date_column<vectorized::DateV2Value<vectorized::DateTimeV2ValueType>, uint64_t>(
col, sub_type, pure_doc_value, array, time_zone);
}
default: