[GitHub] [doris] pengxiangyu commented on a diff in pull request #15398: [refactor](file-cache) refactor the file cache interface

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15369: [feature](nereids) support string alias in select list

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15369: [feature](nereids) support string alias in select list

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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(); }

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15219: [Improvement](JSONB) improve performance JSONB initial json parsing using simdjson

2022-12-27 Thread GitBox
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

[GitHub] [doris] Henry2SS commented on a diff in pull request #15437: [enhancement](session var) varariable to control whether to rewrite OR to IN or not

2022-12-27 Thread GitBox
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

[GitHub] [doris] englefly commented on a diff in pull request #15437: [enhancement](session var) varariable to control whether to rewrite OR to IN or not

2022-12-27 Thread GitBox
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

[doris] branch master updated (8ce62600dc -> f7988fad03)

2022-12-27 Thread dataroaring
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

[GitHub] [doris] dataroaring merged pull request #15426: [improvement](string) set bigger limit for ColumnString chars length

2022-12-27 Thread GitBox
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.

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Henry2SS opened a new pull request, #15437: [enhancement] add a session varariable to control whether rewrite or …

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] Tanya-W commented on a diff in pull request #14211: [feature-wip](inverted index) API for inverted index reader and syntax for fulltext match

2022-12-27 Thread GitBox
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

[GitHub] [doris] hello-stephen commented on pull request #15429: [Enhancement](jemalloc):support heap dump by http requst at runtime

2022-12-27 Thread GitBox
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

[GitHub] [doris] englefly opened a new pull request, #15436: [Fix](primary_index) fix a bug in regression case

2022-12-27 Thread GitBox
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

[GitHub] [doris] hello-stephen commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15312: [Bug](timediff) Fix wrong result for function `timediff`

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15433: [chore](pipeline) optimize profile information

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15433: [chore](pipeline) optimize profile information

2022-12-27 Thread GitBox
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

[GitHub] [doris] mrhhsg opened a new pull request, #15433: [chore](pipeline) optimize profile information

2022-12-27 Thread GitBox
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

[GitHub] [doris] mrhhsg opened a new pull request, #15432: [fix](pipeline) disable sharing hashtable for broadcast join for pipeline engine

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on a diff in pull request #15429: [Enhancement](jemalloc):support heap dump by http requst at runtime

2022-12-27 Thread GitBox
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

[doris] branch branch-1.1-lts updated: [cherry-pick][fix](planner) fix hll_union plan: Invalid Aggregate Operator: hll_union (#14931) (#15425)

2022-12-27 Thread morningman
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]

[GitHub] [doris] morningman merged pull request #15425: [cherry-pick][fix](planner) fix hll_union plan: Invalid Aggregate Operator: hll_union (#14931)

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15386: [bug](jdbc) fix jdbc external table with char type length error

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15386: [bug](jdbc) fix jdbc external table with char type length error

2022-12-27 Thread GitBox
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

[doris] branch master updated (fe02b08e04 -> 8ce62600dc)

2022-12-27 Thread morningman
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

[GitHub] [doris] morningman merged pull request #15420: [Bug] #14876 && #15225 have some bugs in rewrite or to in, revert them

2022-12-27 Thread GitBox
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

[GitHub] [doris] hello-stephen commented on pull request #15426: [improvement](string) set bigger limit for ColumnString chars length

2022-12-27 Thread GitBox
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

[GitHub] [doris] weizuo93 opened a new issue, #15430: [Bug] Cooldown time is error for data in SSD

2022-12-27 Thread GitBox
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

[doris] branch branch-1.2-lts updated: [Improvement](thirdparty)upgrade simdjson from 1.0.2 to 3.0.1 (#15412)

2022-12-27 Thread morningman
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] [doris] github-actions[bot] commented on a diff in pull request #15429: [Enhancement](jemalloc):support heap dump by http requst at runtime

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15422: [bug](datetimev2) fix wrong info when show create table

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15422: [bug](datetimev2) fix wrong info when show create table

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15412: [Improvement](thirdparty)upgrade simdjson from 1.0.2 to 3.0.1

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

2022-12-27 Thread GitBox
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

[doris] branch master updated (121f00b6e2 -> fe02b08e04)

2022-12-27 Thread morningman
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] [doris] github-actions[bot] commented on pull request #15412: [Improvement](thirdparty)upgrade simdjson from 1.0.2 to 3.0.1

2022-12-27 Thread GitBox
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

[GitHub] [doris] morningman merged pull request #15412: [Improvement](thirdparty)upgrade simdjson from 1.0.2 to 3.0.1

2022-12-27 Thread GitBox
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

[doris] branch master updated (d05f430ca2 -> 121f00b6e2)

2022-12-27 Thread panxiaolei
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_

[GitHub] [doris] BiteTheDDDDt merged pull request #15397: [Bug](function) forbid hll_union input not hll type param

2022-12-27 Thread GitBox
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

[GitHub] [doris] spaces-X opened a new pull request, #15429: [Enhancement](jemalloc):support heap dump by http requst at runtime

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15426: [improvement](string) set bigger limit for ColumnString chars length

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15426: [improvement](string) set bigger limit for ColumnString chars length

2022-12-27 Thread GitBox
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

[GitHub] [doris] adonis0147 opened a new pull request, #15428: [fix] Memory leaks when compaction fails

2022-12-27 Thread GitBox
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: - [

[GitHub] [doris] hello-stephen commented on pull request #15424: [fix](brokerload) fix broker load parquet format file finished but no data actually

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15386: [bug](jdbc) fix jdbc external table with char type length error

2022-12-27 Thread GitBox
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

[GitHub] [doris] wangbo commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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

[GitHub] [doris] adonis0147 opened a new issue, #15427: [Bug] Memory leaks when compaction fails

2022-12-27 Thread GitBox
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

[GitHub] [doris] wangbo commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15426: [improvement](string) set bigger limit for ColumnString chars length

2022-12-27 Thread GitBox
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

[GitHub] [doris] jacktengg opened a new pull request, #15426: [improvement](string) set bigger limit for ColumnString chars length

2022-12-27 Thread GitBox
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

[GitHub] [doris] zenoyang opened a new pull request, #15425: [cherry-pick][fix](planner) fix hll_union plan: Invalid Aggregate Operator: hll_union (#14931)

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15397: [Bug](function) forbid hll_union input not hll type param

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15397: [Bug](function) forbid hll_union input not hll type param

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15424: [fix](brokerload) fix broker load parquet format file finished but no data actually

2022-12-27 Thread GitBox
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

[GitHub] [doris] luozenglin opened a new pull request, #15424: [fix](brokerload) fix broker load parquet format file finished but no data actually

2022-12-27 Thread GitBox
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

[GitHub] [doris] wangbo commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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; //

[GitHub] [doris] liaobing opened a new issue, #15423: [Bug] The SQL execution is complete, but no jdbc result is returned

2022-12-27 Thread GitBox
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

[GitHub] [doris] 924060929 commented on a diff in pull request #15201: [feature](multi catalog nereids)Add file scan node to nereids.

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15416: [fix](Nereids) Generate is missing on alias query

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15416: [fix](Nereids) Generate is missing on alias query

2022-12-27 Thread GitBox
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

[GitHub] [doris] wangbo commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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] [doris] Gabriel39 opened a new pull request, #15422: [bug](datetimev2) fix wrong info when show create table

2022-12-27 Thread GitBox
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

[GitHub] [doris] tough-code-farmer commented on issue #14055: [Feature] Support IPV6

2022-12-27 Thread GitBox
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

[GitHub] [doris] hello-stephen commented on pull request #15420: [Bug] #14876 && #15225 have some bugs in rewrite or to in, revert them

2022-12-27 Thread GitBox
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

[doris] branch master updated (f8bb8c7829 -> d05f430ca2)

2022-12-27 Thread morrysnow
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

[GitHub] [doris] morrySnow merged pull request #15376: [feature](nereids) support syntax: count(all * )

2022-12-27 Thread GitBox
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

[GitHub] [doris] zhannngchen commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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

[GitHub] [doris] zhannngchen commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15420: [Bug] #14876 && #15225 have some bugs in rewrite or to in, revert them

2022-12-27 Thread GitBox
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

[doris-website] branch master updated: [oss] fix upload concurrency (#184)

2022-12-27 Thread jiafengzheng
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

[GitHub] [doris-website] hf200012 merged pull request #184: [oss] fix upload concurrency

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15390: [fix](broker) fix be core dump caused by broker load

2022-12-27 Thread GitBox
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

[doris] branch master updated: [fix](broker) fix be core dump caused by broker load (#15390)

2022-12-27 Thread yangzhg
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

[GitHub] [doris] zhannngchen commented on pull request #15390: [fix](broker) fix be core dump caused by broker load

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15390: [fix](broker) fix be core dump caused by broker load

2022-12-27 Thread GitBox
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

[GitHub] [doris] yangzhg closed issue #15389: [Bug] be core dump caused by broker load

2022-12-27 Thread GitBox
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

[GitHub] [doris] yangzhg merged pull request #15390: [fix](broker) fix be core dump caused by broker load

2022-12-27 Thread GitBox
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

[GitHub] [doris] zhannngchen closed pull request #15417: [fix](new file reader) system_properties forgot to init broker_addresses

2022-12-27 Thread GitBox
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

[GitHub] [doris] zhannngchen commented on pull request #15417: [fix](new file reader) system_properties forgot to init broker_addresses

2022-12-27 Thread GitBox
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

[GitHub] [doris] yuxuan-luo opened a new issue, #15421: [Bug] JSONB 类型没有对导入的数据进行校验

2022-12-27 Thread GitBox
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

[GitHub] [doris] Henry2SS opened a new pull request, #15420: [Bug] #14876 && #15225 have some bugs in rewrite or to in, revert them

2022-12-27 Thread GitBox
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: - [ ]

[GitHub] [doris] luozenglin commented on pull request #15417: [fix](new file reader) system_properties forgot to init broker_addresses

2022-12-27 Thread GitBox
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

[doris] branch master updated: [Fix](Nereids)fix group by binding error, resulting in incorrect results (#15328)

2022-12-27 Thread huajianlan
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

[GitHub] [doris] 924060929 merged pull request #15328: [Fix](Nereids)fix group by binding error, resulting in incorrect results

2022-12-27 Thread GitBox
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] [doris] github-actions[bot] commented on pull request #15312: [Bug](timediff) Fix wrong result for function `timediff`

2022-12-27 Thread GitBox
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

[GitHub] [doris] wsjz opened a new pull request, #15418: [feature-wip](iceberg-snapshot) Iceberg snap

2022-12-27 Thread GitBox
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

[GitHub] [doris] Gabriel39 commented on issue #15307: [Bug] Use correct decimal scale for function `round`

2022-12-27 Thread GitBox
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

[GitHub] [doris-website] jeffreys-cat closed pull request #184: [oss] fix upload concurrency

2022-12-27 Thread GitBox
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

[GitHub] [doris] yiguolei commented on a diff in pull request #15413: [refactor]remove seek block in segmentIterator

2022-12-27 Thread GitBox
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_

[GitHub] [doris] wangshuo128 commented on pull request #12872: [enhancement](rewrite) add OrToIn rule && fix expr clone problems

2022-12-27 Thread GitBox
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   2   3   >