This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
from e5519e6c6c [fix](cast) fix wrong result of casting empty string to
array date (#22281)
new 8ac0c83df7 [improve](agg) support distinct agg node (#22169)
new 88085d9076 [bug](distinct-agg) fix distinct-agg outblock columns size
not equal key size (#22357)
new b6fbc0ad3d [fix](ipv6)Remove restrictions from IPv4 when add backend
(#22323)
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
be/src/exec/exec_node.cpp | 7 +-
...istinct_streaming_aggregation_sink_operator.cpp | 97 +++++++++++++++
...distinct_streaming_aggregation_sink_operator.h} | 27 ++--
...tinct_streaming_aggregation_source_operator.cpp | 92 ++++++++++++++
...stinct_streaming_aggregation_source_operator.h} | 15 ++-
be/src/pipeline/pipeline_fragment_context.cpp | 17 ++-
be/src/vec/exec/distinct_vaggregation_node.cpp | 136 +++++++++++++++++++++
be/src/vec/exec/distinct_vaggregation_node.h | 55 +++++++++
be/src/vec/exec/vaggregation_node.cpp | 25 ++--
be/src/vec/exec/vaggregation_node.h | 49 ++++----
.../org/apache/doris/common/util/NetUtils.java | 14 +--
.../expressions/functions/agg/WindowFunnel.java | 8 +-
.../org/apache/doris/system/SystemInfoService.java | 5 -
.../apache/doris/system/SystemInfoServiceTest.java | 32 +++++
14 files changed, 509 insertions(+), 70 deletions(-)
create mode 100644
be/src/pipeline/exec/distinct_streaming_aggregation_sink_operator.cpp
copy be/src/pipeline/exec/{streaming_aggregation_sink_operator.h =>
distinct_streaming_aggregation_sink_operator.h} (65%)
create mode 100644
be/src/pipeline/exec/distinct_streaming_aggregation_source_operator.cpp
copy be/src/pipeline/exec/{streaming_aggregation_source_operator.h =>
distinct_streaming_aggregation_source_operator.h} (70%)
create mode 100644 be/src/vec/exec/distinct_vaggregation_node.cpp
create mode 100644 be/src/vec/exec/distinct_vaggregation_node.h
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]