xiaokang commented on issue #10733:
URL: https://github.com/apache/doris/issues/10733#issuecomment-1193261959
@compasses have you researched tokenbf_v1 in clickhouse? It's also useful
for simple fulltext search. I'd like to collaborate
with you and take tokenbf_v1.
--
This is an auto
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928215324
##
be/src/vec/exprs/vliteral.cpp:
##
@@ -118,6 +120,13 @@ void VLiteral::init(const TExprNode& node) {
field = node.string_literal.value;
brea
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928215954
##
be/src/vec/core/field.h:
##
@@ -89,6 +89,89 @@ struct AggregateFunctionStateData {
}
};
+class JsonField {
+public:
+JsonField() = default;
+
+JsonFi
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928216332
##
be/src/vec/core/field.h:
##
@@ -269,6 +355,11 @@ class Field {
create(data, size);
}
+void assign_json(const unsigned char* data, size_t size) {
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928216650
##
be/src/vec/core/field.h:
##
@@ -572,13 +671,21 @@ class Field {
create(reinterpret_cast(data), size);
}
+void create_json(const unsigned char* da
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928224089
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928225882
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
jackwener opened a new pull request, #11146:
URL: https://github.com/apache/doris/pull/11146
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
StringBuffer() is inefficient without requiring thread-safety.
## Checklist(Required)
1. Does it affe
Author: yiguolei
Date: Sun Jul 24 09:31:01 2022
New Revision: 55933
Log:
Add 1.1.1-rc01
Added:
dev/doris/1.1.1-rc01/
dev/doris/1.1.1-rc01/apache-doris-1.1.1-bin-arm-jdk11.tar.gz (with props)
dev/doris/1.1.1-rc01/apache-doris-1.1.1-bin-arm-jdk11.tar.gz.asc (with
props)
dev/dor
freesinger commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928228269
##
be/src/vec/exprs/vliteral.cpp:
##
@@ -118,6 +120,13 @@ void VLiteral::init(const TExprNode& node) {
field = node.string_literal.value;
br
adonis0147 opened a new issue, #11147:
URL: https://github.com/apache/doris/issues/11147
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and
found no similar issues.
### Version
master
adonis0147 opened a new pull request, #11148:
URL: https://github.com/apache/doris/pull/11148
# Proposed changes
Issue Number: close #11147
## Problem Summary:
TestTimestampedVersionTracker failed in different time zone (e.g. Etc/UTC).
Please refer to #11147 .
##
liaoxin01 opened a new pull request, #11149:
URL: https://github.com/apache/doris/pull/11149
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
see DSIP-018
https://cwiki.apache.org/confluence/display/DORIS/DSIP-018%3A+Support+Merge-On-Write+implementatio
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928234058
##
be/src/vec/olap/olap_data_convertor.cpp:
##
@@ -577,6 +580,77 @@ Status
OlapBlockDataConvertor::OlapColumnDataConvertorDate::convert_to_olap() {
}
}
+// cla
wsjz opened a new pull request, #11150:
URL: https://github.com/apache/doris/pull/11150
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
Describe the overview of changes.
## Checklist(Required)
1. Does it affect the original behavior: (Yes/No/
hanwei996 commented on issue #8266:
URL: https://github.com/apache/doris/issues/8266#issuecomment-1193291655
1.1 version Unknown system variable 'default_storage_engine'. ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub a
hanwei996 opened a new issue, #11151:
URL: https://github.com/apache/doris/issues/11151
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and
found no similar issues.
### Version
1.1 version
xinyiZzz opened a new issue, #11152:
URL: https://github.com/apache/doris/issues/11152
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and
found no similar issues.
### Version
6963c41a049a5
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928239348
##
be/src/vec/common/string_ref.h:
##
@@ -29,6 +29,8 @@
#include "gutil/hash/city.h"
#include "gutil/hash/hash128to64.h"
#include "udf/udf.h"
+#include "util/jsonb_d
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928239578
##
be/src/vec/io/io_helper.h:
##
@@ -122,6 +123,19 @@ inline void write_string_binary(const char* s,
BufferWritable& buf) {
write_string_binary(StringRef {s}, buf
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928251583
##
be/src/vec/data_types/data_type_json.h:
##
@@ -0,0 +1,62 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928252070
##
be/src/vec/data_types/data_type_json.h:
##
@@ -0,0 +1,62 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928252341
##
be/src/vec/data_types/data_type_json.cpp:
##
@@ -0,0 +1,132 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreeme
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928252969
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928253412
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928253550
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928253643
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928255341
##
be/src/vec/columns/column_json.h:
##
@@ -0,0 +1,299 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928256067
##
be/src/vec/data_types/data_type_json.h:
##
@@ -0,0 +1,62 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928256518
##
be/src/olap/types.h:
##
@@ -1454,6 +1460,66 @@ struct FieldTypeTraits : public
FieldTypeTraits
+struct FieldTypeTraits : public
FieldTypeTraits {
+static int c
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928256575
##
be/src/olap/types.h:
##
@@ -1454,6 +1460,66 @@ struct FieldTypeTraits : public
FieldTypeTraits
+struct FieldTypeTraits : public
FieldTypeTraits {
+static int c
xiaokang commented on code in PR #10322:
URL: https://github.com/apache/doris/pull/10322#discussion_r928256700
##
be/src/olap/types.h:
##
@@ -1454,6 +1460,66 @@ struct FieldTypeTraits : public
FieldTypeTraits
+struct FieldTypeTraits : public
FieldTypeTraits {
+static int c
jackwener opened a new pull request, #11153:
URL: https://github.com/apache/doris/pull/11153
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
improve code about optional
## Checklist(Required)
1. Does it affect the original behavior: (Yes/No/I
Gabriel39 opened a new pull request, #11154:
URL: https://github.com/apache/doris/pull/11154
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
Describe the overview of changes.
## Checklist(Required)
1. Does it affect the original behavior:
compasses commented on issue #10733:
URL: https://github.com/apache/doris/issues/10733#issuecomment-1193335812
> @compasses have you researched tokenbf_v1 in clickhouse? It's also useful
for simple fulltext search. I'd like to collaborate with you and take
tokenbf_v1.
Yes, for tokenb
Gabriel39 opened a new pull request, #11155:
URL: https://github.com/apache/doris/pull/11155
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
Describe the overview of changes.
## Checklist(Required)
1. Does it affect the original behavior: (Ye
AshinGau opened a new pull request, #11156:
URL: https://github.com/apache/doris/pull/11156
# Proposed changes
Support pruning buckets for hive bucket table.
## Notes
1. Spark currently does not populate bucketed output which is compatible
with Hive, so spark bucket table i
yiguolei opened a new pull request, #11157:
URL: https://github.com/apache/doris/pull/11157
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
Describe the overview of changes.
## Checklist(Required)
1. Does it affect the original behavior: (Yes
yiguolei merged PR #11157:
URL: https://github.com/apache/doris/pull/11157
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.apa
This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch dev-1.1.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/dev-1.1.1 by this push:
new 24fc3910b2 1.1.1-rc02 (#11157)
24fc3910b2
yiguolei opened a new pull request, #11158:
URL: https://github.com/apache/doris/pull/11158
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
modify the version in gen_build_version.sh
## Checklist(Required)
1. Does it affect the original behav
yiguolei merged PR #11158:
URL: https://github.com/apache/doris/pull/11158
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.apa
This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch dev-1.1.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/dev-1.1.1 by this push:
new a89490562b 1.1.1 rc02 (#11158)
a89490562b
This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to annotated tag 1.1.1-rc02
in repository https://gitbox.apache.org/repos/asf/doris.git
*** WARNING: tag 1.1.1-rc02 was modified! ***
from a89490562b (commit)
to 14d84e2c75 (tag)
tagging a894
github-actions[bot] commented on PR #11022:
URL: https://github.com/apache/doris/pull/11022#issuecomment-1193441999
PR approved by anyone and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
yiguolei merged PR #11141:
URL: https://github.com/apache/doris/pull/11141
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.apa
This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new d9066440f6 [fix](fe_plugins) update fe plugins'
shutao917 commented on issue #11122:
URL: https://github.com/apache/doris/issues/11122#issuecomment-1193450020
>
> at first,the time zone variables are like below: system_time_zone GMT
time_zone Asia/Chungking so i change the operation system time zone to
Asia/Chungking.and
github-actions[bot] commented on PR #11022:
URL: https://github.com/apache/doris/pull/11022#issuecomment-1193452878
PR approved by at least one committer and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHu
This is an automated email from the ASF dual-hosted git repository.
jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new c072cce6004 link
c072cce6004 is des
shutao917 commented on issue #11127:
URL: https://github.com/apache/doris/issues/11127#issuecomment-1193473526
> Could you please provide some error log in BE?
there is not log in be and fe。the doris cluster is upgrade from 1.0 to 1.1
table schema like this(the table is create when
This is an automated email from the ASF dual-hosted git repository.
jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 3108f8bad6c fix incubator word (#16
morningman commented on code in PR #11144:
URL: https://github.com/apache/doris/pull/11144#discussion_r928358670
##
be/src/olap/merger.cpp:
##
@@ -41,8 +41,9 @@ Status Merger::merge_rowsets(TabletSharedPtr tablet,
ReaderType reader_type,
reader_params.reader_type = reader_
morningman commented on code in PR #10864:
URL: https://github.com/apache/doris/pull/10864#discussion_r928359290
##
be/src/util/telemetry/telemetry.cpp:
##
@@ -34,16 +35,24 @@ namespace trace_sdk = opentelemetry::sdk::trace;
namespace zipkin = opentelemetry::exporter::zipkin;
github-actions[bot] commented on PR #11150:
URL: https://github.com/apache/doris/pull/11150#issuecomment-1193477569
PR approved by anyone and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
morningman merged PR #11150:
URL: https://github.com/apache/doris/pull/11150
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.a
github-actions[bot] commented on PR #11150:
URL: https://github.com/apache/doris/pull/11150#issuecomment-1193477540
PR approved by at least one committer and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHu
This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 84ce7eddf6 [feature-wip](parquet-reader) add
github-actions[bot] commented on PR #11148:
URL: https://github.com/apache/doris/pull/11148#issuecomment-1193480936
PR approved by at least one committer and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHu
github-actions[bot] commented on PR #11148:
URL: https://github.com/apache/doris/pull/11148#issuecomment-1193480972
PR approved by anyone and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
shutao917 opened a new issue, #11159:
URL: https://github.com/apache/doris/issues/11159
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and
found no similar issues.
### Version
1.1.0
morningman commented on code in PR #11132:
URL: https://github.com/apache/doris/pull/11132#discussion_r928362029
##
samples/doris-demo/remote-udaf-cpp-demo/cpp_function_service_demo.cpp:
##
@@ -59,7 +59,40 @@ class FunctionServiceImpl : public PFunctionService {
}
This is an automated email from the ASF dual-hosted git repository.
jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new c2c76e7a256 community link
c2c76e7a
dataalive commented on issue #11151:
URL: https://github.com/apache/doris/issues/11151#issuecomment-1193489488
how to produce this error ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the spe
This is an automated email from the ASF dual-hosted git repository.
jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new df212cdaefc 2
df212cdaefc is descri
carlvinhust2012 opened a new pull request, #11160:
URL: https://github.com/apache/doris/pull/11160
# Proposed changes
1. this pr is used to optimization the result check for test_json_load.
Issue Number: close #xxx
## Problem Summary:
Describe the overview of changes.
yiguolei opened a new pull request, #11161:
URL: https://github.com/apache/doris/pull/11161
# Proposed changes
Issue Number: close #xxx
## Problem Summary:
Describe the overview of changes.
## Checklist(Required)
1. Does it affect the original behavior: (Yes
cambyzju commented on PR #11160:
URL: https://github.com/apache/doris/pull/11160#issuecomment-1193502818
LGTM
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe
yiguolei merged PR #11161:
URL: https://github.com/apache/doris/pull/11161
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.apa
This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch dev-1.1.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/dev-1.1.1 by this push:
new 2dbd70bf92 1.1.1 rc03 (#11161)
2dbd70bf92
kpfly commented on issue #11159:
URL: https://github.com/apache/doris/issues/11159#issuecomment-1193505983
It have been fixed https://github.com/apache/doris/pull/11033 , The coming
release version 1.1.1 will contains this fix.
--
This is an automated message from the Apache Git Service
This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to annotated tag 1.1.1-rc03
in repository https://gitbox.apache.org/repos/asf/doris.git
*** WARNING: tag 1.1.1-rc03 was modified! ***
from 2dbd70bf92 (commit)
to aae8374fd8 (tag)
tagging 2dbd
github-actions[bot] commented on PR #11155:
URL: https://github.com/apache/doris/pull/11155#issuecomment-1193507946
PR approved by anyone and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
github-actions[bot] commented on PR #11155:
URL: https://github.com/apache/doris/pull/11155#issuecomment-1193507931
PR approved by at least one committer and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHu
github-actions[bot] commented on PR #11077:
URL: https://github.com/apache/doris/pull/11077#issuecomment-1193511528
PR approved by at least one committer and no changes requested.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHu
wolfboys commented on PR #10918:
URL: https://github.com/apache/doris/pull/10918#issuecomment-1193512879
@compiletheworld PTAL
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment
924060929 merged PR #11077:
URL: https://github.com/apache/doris/pull/11077
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.ap
This is an automated email from the ASF dual-hosted git repository.
huajianlan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from 84ce7eddf6 [feature-wip](parquet-reader) add thrift file for new
parquet reader (#11150)
add d2457ce8f9 [Feat
englefly opened a new pull request, #11162:
URL: https://github.com/apache/doris/pull/11162
# Proposed changes
add rule to push predicates down to aggregation node
1. add PushDownPredicatesThroughAggregation.java
2. add ut for PushDownPredicatesThroughAggregation
* For exampl
morningman commented on code in PR #11156:
URL: https://github.com/apache/doris/pull/11156#discussion_r928353577
##
fe/fe-core/src/main/java/org/apache/doris/catalog/HiveBucketUtil.java:
##
@@ -0,0 +1,394 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or m
morningman merged PR #11046:
URL: https://github.com/apache/doris/pull/11046
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.a
This is an automated email from the ASF dual-hosted git repository.
morningman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from d2457ce8f9 [Feature](Nereids) Add an annotation @Developing (#11077)
add 54f878b781 [feature-wip](multi-catalo
morningman commented on code in PR #11070:
URL: https://github.com/apache/doris/pull/11070#discussion_r928396121
##
be/src/common/config.h:
##
@@ -759,6 +759,7 @@ CONF_Int32(object_pool_buffer_size, "100");
// ParquetReaderWrap prefetch buffer size
CONF_Int32(parquet_reader_ma
kpfly commented on issue #11121:
URL: https://github.com/apache/doris/issues/11121#issuecomment-1193526964
Maybe https://github.com/apache/doris/pull/11033 should be added in release
note. @yiguolei
--
This is an automated message from the Apache Git Service.
To respond to the message, p
wangshuo128 commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928435108
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Soft
zhengshiJ commented on code in PR #11129:
URL: https://github.com/apache/doris/pull/11129#discussion_r928448908
##
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/ExpressionType.java:
##
@@ -0,0 +1,63 @@
+// Licensed to the Apache Software Foundation (ASF) un
adonis0147 commented on code in PR #11101:
URL: https://github.com/apache/doris/pull/11101#discussion_r928450479
##
docs/zh-CN/developer/developer-guide/be-vscode-dev.md:
##
@@ -49,10 +49,10 @@ sudo apt install gcc-10 g++-10
sudo apt-get install autoconf automake libtool autopo
wangshuo128 commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928450692
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Soft
dataroaring merged PR #11142:
URL: https://github.com/apache/doris/pull/11142
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@doris.
This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 93cb80c9cb [test] use suffix of directory as
wangshuo128 commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928455513
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Soft
englefly commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928457267
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Softwar
englefly commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928458145
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Softwar
qzsee commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928458543
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Software F
wangshuo128 commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928463589
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Soft
wangshuo128 commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928463993
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Soft
wangshuo128 commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928463589
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Soft
This is an automated email from the ASF dual-hosted git repository.
jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 087978f343b modify readme
087978f34
englefly commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928470976
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Softwar
englefly commented on code in PR #11162:
URL: https://github.com/apache/doris/pull/11162#discussion_r928471149
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughAggregation.java:
##
@@ -0,0 +1,110 @@
+// Licensed to the Apache Softwar
1 - 100 of 119 matches
Mail list logo