pengxiangyu commented on code in PR #15398:
URL: https://github.com/apache/doris/pull/15398#discussion_r1058132159
##
be/src/io/fs/file_system.h:
##
@@ -52,6 +53,9 @@ class FileSystem {
virtual Status create_file(const Path& path, FileWriterPtr* writer) = 0;
+virtua
github-actions[bot] commented on PR #15369:
URL: https://github.com/apache/doris/pull/15369#issuecomment-1366443954
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 #15369:
URL: https://github.com/apache/doris/pull/15369#issuecomment-1366443930
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
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058131416
##
be/src/exec/olap_common.h:
##
@@ -94,8 +94,12 @@ class ColumnValueRange {
Status add_range(SQLFilterOp op, CppType value);
+Status add_match_value(Match
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058130158
##
be/src/exprs/expr.cpp:
##
@@ -383,6 +384,22 @@ Status Expr::create_expr(ObjectPool* pool, const
TExprNode& texpr_node, Expr** e
return Status::OK();
}
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058129900
##
be/src/exprs/match_predicate.cpp:
##
@@ -0,0 +1,102 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
github-actions[bot] commented on PR #15219:
URL: https://github.com/apache/doris/pull/15219#issuecomment-1366438774
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
Henry2SS commented on code in PR #15437:
URL: https://github.com/apache/doris/pull/15437#discussion_r1058126654
##
fe/fe-core/src/test/java/org/apache/doris/planner/QueryPlanTest.java:
##
@@ -2238,5 +2238,14 @@ public void testRewriteOrToIn() throws Exception {
sql = "S
englefly commented on code in PR #15437:
URL: https://github.com/apache/doris/pull/15437#discussion_r1058125511
##
fe/fe-core/src/test/java/org/apache/doris/planner/QueryPlanTest.java:
##
@@ -2238,5 +2238,14 @@ public void testRewriteOrToIn() throws Exception {
sql = "S
This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from 8ce62600dc [Bug] #14876 && #15225 have some bugs in rewrite or to in,
revert them (#15420)
add f7988fad03 [i
dataroaring merged PR #15426:
URL: https://github.com/apache/doris/pull/15426
--
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.
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058125040
##
be/src/exprs/match_predicate.cpp:
##
@@ -0,0 +1,102 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. Se
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058122554
##
fe/fe-core/src/main/jflex/sql_scanner.flex:
##
@@ -293,6 +293,15 @@ import org.apache.doris.qe.SqlModeHelper;
keywordMap.put("lock", new Integer(SqlParserSy
Henry2SS opened a new pull request, #15437:
URL: https://github.com/apache/doris/pull/15437
…to in or not
# Proposed changes
Issue Number: close #12872 #15420
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the ori
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058121725
##
be/src/vec/functions/match.cpp:
##
@@ -0,0 +1,143 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. See
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058121469
##
be/src/vec/exec/scan/vscan_node.cpp:
##
@@ -822,6 +837,48 @@ Status VScanNode::_normalize_noneq_binary_predicate(VExpr*
expr, VExprContext* e
return Status::OK
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058121287
##
be/src/olap/in_list_predicate.h:
##
@@ -241,6 +242,29 @@ class InListPredicateBase : public ColumnPredicate {
return Status::OK();
}
+Status eval
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058120491
##
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##
@@ -373,6 +382,55 @@ Status SegmentIterator::_apply_bitmap_index() {
return Status::OK();
}
+Status Se
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058118708
##
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##
@@ -659,6 +732,9 @@ Status SegmentIterator::next_batch(RowBlockV2* block) {
for (auto column_predicat
Tanya-W commented on code in PR #14211:
URL: https://github.com/apache/doris/pull/14211#discussion_r1058117459
##
be/src/olap/rowset/segment_v2/column_reader.h:
##
@@ -211,9 +224,11 @@ class ColumnReader {
const BloomFilterIndexPB* _bf_index_meta = nullptr;
DorisCall
hello-stephen commented on PR #15429:
URL: https://github.com/apache/doris/pull/15429#issuecomment-136642
TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 34.96 seconds
load time: 642 seconds
storage size: 17122955933 Bytes
https://doris-co
englefly opened a new pull request, #15436:
URL: https://github.com/apache/doris/pull/15436
# Proposed changes
@yixiutt PTAL
Issue Number: close #xxx
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the original behav
hello-stephen commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366417284
TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 34.53 seconds
load time: 634 seconds
storage size: 17123685169 Bytes
https://doris-co
github-actions[bot] commented on PR #15312:
URL: https://github.com/apache/doris/pull/15312#issuecomment-1366412458
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366411397
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
github-actions[bot] commented on PR #15433:
URL: https://github.com/apache/doris/pull/15433#issuecomment-1366408708
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
github-actions[bot] commented on PR #15433:
URL: https://github.com/apache/doris/pull/15433#issuecomment-1366407789
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
mrhhsg opened a new pull request, #15433:
URL: https://github.com/apache/doris/pull/15433
# Proposed changes
Issue Number: close #xxx
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the original behavior:
- [ ] Yes
mrhhsg opened a new pull request, #15432:
URL: https://github.com/apache/doris/pull/15432
# Proposed changes
`SharedHashTableController::wait_for_signal` will block the
HashJoinBuildSink operator and the query will be blocked if there are too many
instances waiting for the shared has
github-actions[bot] commented on code in PR #15429:
URL: https://github.com/apache/doris/pull/15429#discussion_r1058069590
##
be/src/http/action/jeprofile_actions.cpp:
##
@@ -0,0 +1,81 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor lice
This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-1.1-lts
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.1-lts by this push:
new e11da0e7ab [cherry-pick][fix]
morningman merged PR #15425:
URL: https://github.com/apache/doris/pull/15425
--
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 #15386:
URL: https://github.com/apache/doris/pull/15386#issuecomment-1366380927
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 #15386:
URL: https://github.com/apache/doris/pull/15386#issuecomment-1366380909
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 change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from fe02b08e04 [Improvement](thirdparty)upgrade simdjson from 1.0.2 to
3.0.1 (#15412)
add 8ce62600dc [Bug] #14876
morningman merged PR #15420:
URL: https://github.com/apache/doris/pull/15420
--
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
hello-stephen commented on PR #15426:
URL: https://github.com/apache/doris/pull/15426#issuecomment-1366378792
TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 36.2 seconds
load time: 650 seconds
storage size: 17123196201 Bytes
https://doris-com
weizuo93 opened a new issue, #15430:
URL: https://github.com/apache/doris/issues/15430
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no
similar issues.
### Version
Master branch (commit i
This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
new 8fbf5c5c16 [Improvement](thir
github-actions[bot] commented on code in PR #15429:
URL: https://github.com/apache/doris/pull/15429#discussion_r1058047997
##
be/src/http/action/jeprofile_actions.cpp:
##
@@ -0,0 +1,81 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor lice
github-actions[bot] commented on PR #15422:
URL: https://github.com/apache/doris/pull/15422#issuecomment-1366358236
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 #15422:
URL: https://github.com/apache/doris/pull/15422#issuecomment-1366358252
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 #15412:
URL: https://github.com/apache/doris/pull/15412#issuecomment-1366358113
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 #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366358114
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
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 121f00b6e2 [Bug](function) forbid hll_union input not hll type param
(#15397)
add fe02b08e04 [Improvement](th
github-actions[bot] commented on PR #15412:
URL: https://github.com/apache/doris/pull/15412#issuecomment-1366358100
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
morningman merged PR #15412:
URL: https://github.com/apache/doris/pull/15412
--
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.
panxiaolei pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from d05f430ca2 [feature](nereids) support syntax: count(all *) (#15376)
add 121f00b6e2 [Bug](function) forbid hll_
BiteThet merged PR #15397:
URL: https://github.com/apache/doris/pull/15397
--
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
spaces-X opened a new pull request, #15429:
URL: https://github.com/apache/doris/pull/15429
# Proposed changes
## Problem summary
1. Support heap dump in jemalloc by http requst at runtime
2. Add the use of jemalloc heap profiling in the `debug-tool.md` doc
## Chec
github-actions[bot] commented on PR #15426:
URL: https://github.com/apache/doris/pull/15426#issuecomment-1366355444
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 #15426:
URL: https://github.com/apache/doris/pull/15426#issuecomment-1366355423
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
adonis0147 opened a new pull request, #15428:
URL: https://github.com/apache/doris/pull/15428
# Proposed changes
Issue Number: close #15427
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the original behavior:
- [
hello-stephen commented on PR #15424:
URL: https://github.com/apache/doris/pull/15424#issuecomment-1366352818
TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 35.79 seconds
load time: 655 seconds
storage size: 17123670612 Bytes
https://doris-co
github-actions[bot] commented on PR #15386:
URL: https://github.com/apache/doris/pull/15386#issuecomment-1366351843
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
wangbo commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058041369
##
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##
@@ -571,11 +569,13 @@ Status SegmentIterator::_seek_and_peek(rowid_t rowid) {
RETURN_IF_ERROR(_seek_co
adonis0147 opened a new issue, #15427:
URL: https://github.com/apache/doris/issues/15427
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no
similar issues.
### Version
branch-1.1-lts
wangbo commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058034457
##
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##
@@ -571,11 +569,13 @@ Status SegmentIterator::_seek_and_peek(rowid_t rowid) {
RETURN_IF_ERROR(_seek_co
github-actions[bot] commented on PR #15426:
URL: https://github.com/apache/doris/pull/15426#issuecomment-1366347692
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
jacktengg opened a new pull request, #15426:
URL: https://github.com/apache/doris/pull/15426
# Proposed changes
Issue Number: related to #15360
## Problem summary
Some test cases will exceed the old 1G limit for ColumnString chars length,
set a larger limt.
## Che
zenoyang opened a new pull request, #15425:
URL: https://github.com/apache/doris/pull/15425
# Proposed changes
Issue Number: close #14931
When using hll_union aggregate function, PREAGGREGATION is always OFF and
Rollup cannot be hit.
## Problem summary
Describ
github-actions[bot] commented on PR #15397:
URL: https://github.com/apache/doris/pull/15397#issuecomment-1366346220
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 #15397:
URL: https://github.com/apache/doris/pull/15397#issuecomment-1366346207
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 #15424:
URL: https://github.com/apache/doris/pull/15424#issuecomment-1366343443
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
luozenglin opened a new pull request, #15424:
URL: https://github.com/apache/doris/pull/15424
# Proposed changes
Issue Number: close #xxx
## Problem summary
broker `openReader` interface cannot get the file size, resulting in the
file size being incorrectly set to 0
wangbo commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058036036
##
be/src/olap/rowset/segment_v2/segment_iterator.h:
##
@@ -227,7 +281,10 @@ class SegmentIterator : public RowwiseIterator {
std::unique_ptr _seek_schema;
//
liaobing opened a new issue, #15423:
URL: https://github.com/apache/doris/issues/15423
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no
similar issues.
### Version
1.1.1
### What's
924060929 commented on code in PR #15201:
URL: https://github.com/apache/doris/pull/15201#discussion_r1058035149
##
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/BindRelation.java:
##
@@ -82,48 +112,62 @@ private LogicalPlan bindWithCurrentDb(CascadesContext
github-actions[bot] commented on PR #15416:
URL: https://github.com/apache/doris/pull/15416#issuecomment-1366340707
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 #15416:
URL: https://github.com/apache/doris/pull/15416#issuecomment-1366340724
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
wangbo commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058034457
##
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##
@@ -571,11 +569,13 @@ Status SegmentIterator::_seek_and_peek(rowid_t rowid) {
RETURN_IF_ERROR(_seek_co
Gabriel39 opened a new pull request, #15422:
URL: https://github.com/apache/doris/pull/15422
# Proposed changes
Issue Number: close #xxx
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the original behavior:
- [ ] Y
tough-code-farmer commented on issue #14055:
URL: https://github.com/apache/doris/issues/14055#issuecomment-1366336813
Hi, Shengjun,
Is there any progress on IPv6 support? When will it be finished?
Thanks
--
This is an automated message from the Apache Git Service.
To respond to
hello-stephen commented on PR #15420:
URL: https://github.com/apache/doris/pull/15420#issuecomment-1366336458
TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 34.83 seconds
load time: 636 seconds
storage size: 17123685508 Bytes
https://doris-co
This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from f8bb8c7829 [fix](broker) fix be core dump caused by broker load
(#15390)
add d05f430ca2 [feature](nereids) sup
morrySnow merged PR #15376:
URL: https://github.com/apache/doris/pull/15376
--
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
zhannngchen commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058029664
##
be/src/olap/rowset/segment_v2/segment_iterator.h:
##
@@ -166,6 +167,59 @@ class SegmentIterator : public RowwiseIterator {
void _update_max_row(const vect
zhannngchen commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058029569
##
be/src/olap/rowset/segment_v2/segment_iterator.h:
##
@@ -227,7 +281,10 @@ class SegmentIterator : public RowwiseIterator {
std::unique_ptr _seek_schema;
github-actions[bot] commented on PR #15420:
URL: https://github.com/apache/doris/pull/15420#issuecomment-1366331594
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
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 f2a3ae13452 [oss] fix upload concur
hf200012 merged PR #184:
URL: https://github.com/apache/doris-website/pull/184
--
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
github-actions[bot] commented on PR #15390:
URL: https://github.com/apache/doris/pull/15390#issuecomment-1366330446
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
This is an automated email from the ASF dual-hosted git repository.
yangzhg 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 f8bb8c7829 [fix](broker) fix be core dump caused
zhannngchen commented on PR #15390:
URL: https://github.com/apache/doris/pull/15390#issuecomment-1366330440
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 unsubscr
github-actions[bot] commented on PR #15390:
URL: https://github.com/apache/doris/pull/15390#issuecomment-1366330433
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
yangzhg closed issue #15389: [Bug] be core dump caused by broker load
URL: https://github.com/apache/doris/issues/15389
--
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 unsub
yangzhg merged PR #15390:
URL: https://github.com/apache/doris/pull/15390
--
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.apac
zhannngchen closed pull request #15417: [fix](new file reader)
system_properties forgot to init broker_addresses
URL: https://github.com/apache/doris/pull/15417
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL abov
zhannngchen commented on PR #15417:
URL: https://github.com/apache/doris/pull/15417#issuecomment-1366330287
duplicate with #15390
--
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 com
yuxuan-luo opened a new issue, #15421:
URL: https://github.com/apache/doris/issues/15421
### Search before asking
- [X] I had searched in the
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no
similar issues.
### Version
1.2.1
### What
Henry2SS opened a new pull request, #15420:
URL: https://github.com/apache/doris/pull/15420
# Proposed changes
Issue Number: close #12872
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the original behavior:
- [ ]
luozenglin commented on PR #15417:
URL: https://github.com/apache/doris/pull/15417#issuecomment-1366327524
Same as: #15390
--
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.
T
This is an automated email from the ASF dual-hosted git repository.
huajianlan 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 2af831de33 [Fix](Nereids)fix group by binding
924060929 merged PR #15328:
URL: https://github.com/apache/doris/pull/15328
--
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
github-actions[bot] commented on PR #15312:
URL: https://github.com/apache/doris/pull/15312#issuecomment-1366324011
clang-tidy review says "All clean, LGTM! :+1:"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
wsjz opened a new pull request, #15418:
URL: https://github.com/apache/doris/pull/15418
# Proposed changes
Issue Number: close #xxx
## Problem summary
Describe your changes.
## Checklist(Required)
1. Does it affect the original behavior:
- [ ] Yes
Gabriel39 commented on issue #15307:
URL: https://github.com/apache/doris/issues/15307#issuecomment-1366323028
> m with the rounding result, and the precision problem seems to have been
fix
Currently, literal 16.025000 is considered as DECIMALV2 by default so we got
a wrong result. T
jeffreys-cat closed pull request #184: [oss] fix upload concurrency
URL: https://github.com/apache/doris-website/pull/184
--
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 uns
yiguolei commented on code in PR #15413:
URL: https://github.com/apache/doris/pull/15413#discussion_r1058017108
##
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##
@@ -571,11 +569,13 @@ Status SegmentIterator::_seek_and_peek(rowid_t rowid) {
RETURN_IF_ERROR(_seek_
wangshuo128 commented on PR #12872:
URL: https://github.com/apache/doris/pull/12872#issuecomment-1366316101
It seems this PR introduced unstable test, please see
http://43.132.222.7:8111/viewLog.html?buildId=69682&buildTypeId=Doris_Doris_FeUt
cc @caiconghui @morrySnow
--
This is an au
1 - 100 of 243 matches
Mail list logo