[GitHub] [doris] 924060929 commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
924060929 commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932166564 ## fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4: ## @@ -119,6 +119,12 @@ sortItem : expression ordering = (ASC | DESC)? ; +limitClau

[GitHub] [doris] 924060929 commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
924060929 commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932166564 ## fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4: ## @@ -119,6 +119,12 @@ sortItem : expression ordering = (ASC | DESC)? ; +limitClau

[GitHub] [doris] 924060929 commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
924060929 commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932166564 ## fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4: ## @@ -119,6 +119,12 @@ sortItem : expression ordering = (ASC | DESC)? ; +limitClau

[GitHub] [doris] liaoxin01 commented on a diff in pull request #11289: [feature-wip](unique-key-merge-on-write) update bitmap after compaction, DSIP-018

2022-07-28 Thread GitBox
liaoxin01 commented on code in PR #11289: URL: https://github.com/apache/doris/pull/11289#discussion_r932187033 ## be/src/olap/tablet_meta.cpp: ## @@ -734,6 +734,45 @@ Status TabletMeta::set_partition_id(int64_t partition_id) { return Status::OK(); } +// update dst rowse

[GitHub] [doris] 924060929 commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
924060929 commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932170082 ## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ## @@ -532,13 +534,23 @@ public List visitNamedExpressionSeq(NamedExpressionSeqCo

[GitHub] [doris] 924060929 commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
924060929 commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932172366 ## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ## @@ -532,13 +534,23 @@ public List visitNamedExpressionSeq(NamedExpressionSeqCo

[GitHub] [doris] 924060929 commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
924060929 commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932205828 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/EliminateAliasNode.java: ## @@ -0,0 +1,79 @@ +// Licensed to the Apache Software Foundation (ASF) u

[GitHub] [doris] zhannngchen commented on a diff in pull request #11289: [feature-wip](unique-key-merge-on-write) update bitmap after compaction, DSIP-018

2022-07-28 Thread GitBox
zhannngchen commented on code in PR #11289: URL: https://github.com/apache/doris/pull/11289#discussion_r932206948 ## be/src/olap/tablet_meta.cpp: ## @@ -734,6 +736,46 @@ Status TabletMeta::set_partition_id(int64_t partition_id) { return Status::OK(); } +// update dst row

[GitHub] [doris] SaintBacchus opened a new pull request, #11310: [feature-wip][multi-catalog]Support caseSensitive field name in file scan node

2022-07-28 Thread GitBox
SaintBacchus opened a new pull request, #11310: URL: https://github.com/apache/doris/pull/11310 # Proposed changes Issue Number: close #xxx ## Problem Summary: Spark support upper case column name and the column name will persist in parquet and orc. But the hms table only

[GitHub] [doris] liaoxin01 commented on a diff in pull request #11289: [feature-wip](unique-key-merge-on-write) update bitmap after compaction, DSIP-018

2022-07-28 Thread GitBox
liaoxin01 commented on code in PR #11289: URL: https://github.com/apache/doris/pull/11289#discussion_r932217125 ## be/src/olap/tablet_meta.cpp: ## @@ -734,6 +736,46 @@ Status TabletMeta::set_partition_id(int64_t partition_id) { return Status::OK(); } +// update dst rowse

[GitHub] [doris] 924060929 commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
924060929 commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932233689 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/EliminateAliasNode.java: ## @@ -0,0 +1,91 @@ +// Licensed to the Apache Software Foundation (ASF) u

[GitHub] [doris] morrySnow commented on a diff in pull request #11181: [Regression] Add tpch plan check

2022-07-28 Thread GitBox
morrySnow commented on code in PR #11181: URL: https://github.com/apache/doris/pull/11181#discussion_r932238919 ## regression-test/suites/tpch_sf1/load.groovy: ## @@ -77,4 +77,5 @@ suite("load") { def table = "revenue1" sql new File("""${context.file.parent}/ddl/${tabl

[GitHub] [doris] morrySnow opened a new pull request, #11311: [chore](fe)reject illegal import

2022-07-28 Thread GitBox
morrySnow opened a new pull request, #11311: URL: https://github.com/apache/doris/pull/11311 ## Problem Summary: Reject below: - com.clearspring.analytics.util.*: in anywhere - junit4: package under nereids ## Checklist(Required) 1. Type of your changes: - [

[GitHub] [doris] adonis0147 commented on a diff in pull request #11299: [enhancement](nereids) Don't normalize expressions when pushing down predicates

2022-07-28 Thread GitBox
adonis0147 commented on code in PR #11299: URL: https://github.com/apache/doris/pull/11299#discussion_r932257000 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rewrite/NormalizeExpressions.java: ## @@ -27,15 +28,16 @@ /** * normalize expression of plan

[GitHub] [doris] adonis0147 commented on a diff in pull request #11299: [enhancement](nereids) Don't normalize expressions when pushing down predicates

2022-07-28 Thread GitBox
adonis0147 commented on code in PR #11299: URL: https://github.com/apache/doris/pull/11299#discussion_r932259213 ## fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/logical/PushDownPredicateTest.java: ## @@ -242,6 +243,7 @@ public void pushDownPredicateIntoScanTes

[GitHub] [doris] freesinger opened a new pull request, #11312: [doc](website)Update column name of node status for `show backends`

2022-07-28 Thread GitBox
freesinger opened a new pull request, #11312: URL: https://github.com/apache/doris/pull/11312 # Proposed changes Update column name of node status for `show backends` command ## Checklist(Required) 1. Type of your changes: - [ ] Improvement - [ ] Fix

[GitHub] [doris] adonis0147 commented on pull request #11299: [enhancement](nereids) Don't normalize expressions when pushing down predicates

2022-07-28 Thread GitBox
adonis0147 commented on PR #11299: URL: https://github.com/apache/doris/pull/11299#issuecomment-1198190660 > I suggest renaming the PR title to "Normalize expressions before performing plan rewriting". The current title is a bit misleading. Good advice. -- This is an automated mess

[GitHub] [doris] liutang123 opened a new pull request, #11313: Fix max_instances_num_per_user metric

2022-07-28 Thread GitBox
liutang123 opened a new pull request, #11313: URL: https://github.com/apache/doris/pull/11313 # Proposed changes Issue Number: close #xxx ## Problem Summary: Add metric in right metric register. After this PR, fe_host:fe_http_port/metrics will show `doris_fe_max_instances

[GitHub] [doris] github-actions[bot] commented on pull request #11285: [feature-wip] (parquet-reader) add parquet reader impl template

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11285: URL: https://github.com/apache/doris/pull/11285#issuecomment-1198233591 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 #11285: [feature-wip] (parquet-reader) add parquet reader impl template

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11285: URL: https://github.com/apache/doris/pull/11285#issuecomment-1198233545 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] Gabriel39 opened a new issue, #11314: [Bug] Wrong types for outer join

2022-07-28 Thread GitBox
Gabriel39 opened a new issue, #11314: URL: https://github.com/apache/doris/issues/11314 ### 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

[GitHub] [doris] Gabriel39 opened a new pull request, #11315: [Bug] (outer join) Fix wrong types in outer join

2022-07-28 Thread GitBox
Gabriel39 opened a new pull request, #11315: URL: https://github.com/apache/doris/pull/11315 # Proposed changes Issue Number: close #11314 ## Problem Summary: ## Checklist(Required) 1. Type of your changes: - [ ] Improvement - [ ] Fix - [ ] Fea

[GitHub] [doris] kpfly commented on pull request #11315: [Bug] (outer join) Fix wrong types in outer join

2022-07-28 Thread GitBox
kpfly commented on PR #11315: URL: https://github.com/apache/doris/pull/11315#issuecomment-1198257549 Could you guys review this pr ? @starocean999 @morrySnow -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL ab

[GitHub] [doris] github-actions[bot] commented on pull request #11181: [Regression](planner) Add tpch plan check

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11181: URL: https://github.com/apache/doris/pull/11181#issuecomment-1198264349 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 #11312: [doc](website)Update column name of node status for `show backends`

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11312: URL: https://github.com/apache/doris/pull/11312#issuecomment-1198298559 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 #11312: [doc](website)Update column name of node status for `show backends`

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11312: URL: https://github.com/apache/doris/pull/11312#issuecomment-1198298582 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 #11309: [feature](planner)add projection info TPlanNode to support projection on ExecNode

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11309: URL: https://github.com/apache/doris/pull/11309#issuecomment-1198309056 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 #11309: [feature](planner)add projection info TPlanNode to support projection on ExecNode

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11309: URL: https://github.com/apache/doris/pull/11309#issuecomment-1198309111 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] platoneko commented on a diff in pull request #10731: [Enhancement] Garbage collection of unused data on remote storage backend

2022-07-28 Thread GitBox
platoneko commented on code in PR #10731: URL: https://github.com/apache/doris/pull/10731#discussion_r932420975 ## be/src/olap/base_tablet.h: ## @@ -59,10 +60,10 @@ class BaseTablet : public std::enable_shared_from_this { int16_t shard_id() const; bool equal(int64_t t

[GitHub] [doris] luozenglin opened a new pull request, #11316: [fix] Fix the query result error caused by the grouping sets statemen…

2022-07-28 Thread GitBox
luozenglin opened a new pull request, #11316: URL: https://github.com/apache/doris/pull/11316 …t grouping as an expression Push the expression down to the repeat node. # Proposed changes Issue Number: close #4427 ## Problem Summary: ## Checklist(Required)

[GitHub] [doris] sohardforaname commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
sohardforaname commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932472090 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/EliminateAliasNode.java: ## @@ -0,0 +1,91 @@ +// Licensed to the Apache Software Foundation (A

[GitHub] [doris] sohardforaname commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
sohardforaname commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932472362 ## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ## @@ -206,11 +211,33 @@ public LogicalPlan visitRegularQuerySpecification(R

[GitHub] [doris] sohardforaname commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
sohardforaname commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932472551 ## fe/fe-core/src/main/java/org/apache/doris/nereids/memo/GroupExpression.java: ## @@ -168,6 +169,12 @@ public boolean equals(Object o) { return fals

[GitHub] [doris] sohardforaname commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
sohardforaname commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932472090 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/EliminateAliasNode.java: ## @@ -0,0 +1,91 @@ +// Licensed to the Apache Software Foundation (A

[GitHub] [doris] sohardforaname commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
sohardforaname commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932478061 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/EliminateAliasNode.java: ## @@ -0,0 +1,91 @@ +// Licensed to the Apache Software Foundation (A

[GitHub] [doris] yiguolei commented on a diff in pull request #11301: [enhancement] Improve limit query performance on olapScannode

2022-07-28 Thread GitBox
yiguolei commented on code in PR #11301: URL: https://github.com/apache/doris/pull/11301#discussion_r932783028 ## be/src/exec/olap_scan_node.cpp: ## @@ -95,7 +95,8 @@ Status OlapScanNode::init(const TPlanNode& tnode, RuntimeState* state) { _runtime_filter_ctxs[i].run

[GitHub] [doris] yiguolei merged pull request #11295: [community](*): remove type in checklist.

2022-07-28 Thread GitBox
yiguolei merged PR #11295: URL: https://github.com/apache/doris/pull/11295 -- 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

[doris] branch master updated: [community](*): remove type in checklist. (#11295)

2022-07-28 Thread yiguolei
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 91424a4a4e [community](*): remove type in check

[GitHub] [doris] yiguolei merged pull request #11278: [Vectorized] Support both distinct and order by of group_concat

2022-07-28 Thread GitBox
yiguolei merged PR #11278: URL: https://github.com/apache/doris/pull/11278 -- 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

[doris] branch master updated: [Vectorized] Support both distinct and order by of group_concat (#11278)

2022-07-28 Thread yiguolei
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 bac280e803 [Vectorized] Support both distinct a

[GitHub] [doris] github-actions[bot] commented on pull request #11311: [chore](fe)reject illegal import

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11311: URL: https://github.com/apache/doris/pull/11311#issuecomment-1198786736 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 #11290: [feature-wip](unique-key-merge-on-write) some followup of #11057

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11290: URL: https://github.com/apache/doris/pull/11290#issuecomment-1198789915 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] yangzhg commented on a diff in pull request #11301: [enhancement] Improve limit query performance on olapScannode

2022-07-28 Thread GitBox
yangzhg commented on code in PR #11301: URL: https://github.com/apache/doris/pull/11301#discussion_r932793498 ## be/src/exec/olap_scan_node.cpp: ## @@ -95,7 +95,8 @@ Status OlapScanNode::init(const TPlanNode& tnode, RuntimeState* state) { _runtime_filter_ctxs[i].runt

[GitHub] [doris] liaoxin01 commented on a diff in pull request #11283: [feature-wip](unique-key-merge-on-write) Add support for tablet migration, DSIP-018[5/3]

2022-07-28 Thread GitBox
liaoxin01 commented on code in PR #11283: URL: https://github.com/apache/doris/pull/11283#discussion_r932794629 ## be/src/olap/rowset/beta_rowset_writer.cpp: ## @@ -161,6 +161,10 @@ Status BetaRowsetWriter::add_rowset(RowsetSharedPtr rowset) { _total_data_size += rowset->r

[GitHub] [doris] github-actions[bot] commented on pull request #10864: [tracing] Support opentelemtry collector.

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #10864: URL: https://github.com/apache/doris/pull/10864#issuecomment-1198794871 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] jacktengg opened a new issue, #11317: [Bug] Array regression test case cause BE coredump

2022-07-28 Thread GitBox
jacktengg opened a new issue, #11317: URL: https://github.com/apache/doris/issues/11317 ### 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 b260a

[GitHub] [doris] jacktengg opened a new issue, #11318: [Bug] group_concat regression test case fail

2022-07-28 Thread GitBox
jacktengg opened a new issue, #11318: URL: https://github.com/apache/doris/issues/11318 ### 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 b260a

[GitHub] [doris] wangbo opened a new issue, #11319: [Bug] Fe dead Lock with unknown reseaon

2022-07-28 Thread GitBox
wangbo opened a new issue, #11319: URL: https://github.com/apache/doris/issues/11319 ### 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 ###

[GitHub] [doris] yiguolei closed pull request #11182: always copy data to agg status

2022-07-28 Thread GitBox
yiguolei closed pull request #11182: always copy data to agg status URL: https://github.com/apache/doris/pull/11182 -- 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 unsubscri

[GitHub] [doris] englefly commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
englefly commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932809540 ## fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4: ## @@ -119,6 +119,12 @@ sortItem : expression ordering = (ASC | DESC)? ; +limitClaus

[GitHub] [doris] yangzhg commented on a diff in pull request #11316: [fix] Fix the query result error caused by the grouping sets statemen…

2022-07-28 Thread GitBox
yangzhg commented on code in PR #11316: URL: https://github.com/apache/doris/pull/11316#discussion_r932811407 ## be/src/exec/repeat_node.h: ## @@ -52,12 +55,17 @@ class RepeatNode : public ExecNode { std::vector> _grouping_list; // Tuple id used for output, it has new

[GitHub] [doris] github-actions[bot] commented on pull request #11188: [doc][fix] Fix the duplicate partition name in example of CREATE TABLE

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11188: URL: https://github.com/apache/doris/pull/11188#issuecomment-1198813205 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] yiguolei commented on pull request #11296: [refactor] (datetimev2) refactor FEFunctions for datev2/datetimev2

2022-07-28 Thread GitBox
yiguolei commented on PR #11296: URL: https://github.com/apache/doris/pull/11296#issuecomment-1198814005 Fast merge this new type. -- 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] yiguolei merged pull request #11296: [refactor] (datetimev2) refactor FEFunctions for datev2/datetimev2

2022-07-28 Thread GitBox
yiguolei merged PR #11296: URL: https://github.com/apache/doris/pull/11296 -- 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

[doris] branch master updated: [refactor] (datetimev2) refactor FEFunctions for datev2/datetimev2 (#11296)

2022-07-28 Thread yiguolei
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 3c44d84c93 [refactor] (datetimev2) refactor FEF

[GitHub] [doris] englefly commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
englefly commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932809540 ## fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4: ## @@ -119,6 +119,12 @@ sortItem : expression ordering = (ASC | DESC)? ; +limitClaus

[GitHub] [doris] Jibing-Li opened a new pull request, #11320: [feature] Support runtime filter for file scan node.

2022-07-28 Thread GitBox
Jibing-Li opened a new pull request, #11320: URL: https://github.com/apache/doris/pull/11320 # Proposed changes Support runtime filter for file scan node. ## Problem Summary: ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes -

[GitHub] [doris] kpfly commented on pull request #11320: [feature] Support runtime filter for file scan node.

2022-07-28 Thread GitBox
kpfly commented on PR #11320: URL: https://github.com/apache/doris/pull/11320#issuecomment-1198816250 Is there any performance tests? -- 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

[GitHub] [doris] github-actions[bot] commented on pull request #11315: [Bug] (outer join) Fix wrong types in outer join

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11315: URL: https://github.com/apache/doris/pull/11315#issuecomment-1198819209 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] morningman merged pull request #11181: [Regression](planner) Add tpch plan check

2022-07-28 Thread GitBox
morningman merged PR #11181: URL: https://github.com/apache/doris/pull/11181 -- 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 (3c44d84c93 -> 8d31745415)

2022-07-28 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 3c44d84c93 [refactor] (datetimev2) refactor FEFunctions for datev2/datetimev2 (#11296) add 8d31745415 [Regres

[GitHub] [doris] englefly commented on a diff in pull request #11209: [feature] (Nereids) support limit clause

2022-07-28 Thread GitBox
englefly commented on code in PR #11209: URL: https://github.com/apache/doris/pull/11209#discussion_r932822099 ## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ## @@ -532,13 +534,23 @@ public List visitNamedExpressionSeq(NamedExpressionSeqCon

svn commit: r56023 - /dev/doris/1.1.1-rc03/ /release/doris/1.1.1-rc03/

2022-07-28 Thread morningman
Author: morningman Date: Fri Jul 29 02:52:03 2022 New Revision: 56023 Log: move doris 1.1.1-rc03 to release Added: release/doris/1.1.1-rc03/ - copied from r56022, dev/doris/1.1.1-rc03/ Removed: dev/doris/1.1.1-rc03/ -

svn commit: r56024 - in /release/doris: 1.1.1-rc03/ 1.1/1.1.1-rc03/

2022-07-28 Thread morningman
Author: morningman Date: Fri Jul 29 03:00:53 2022 New Revision: 56024 Log: move doris 1.1.1-rc03 to 1.1 Added: release/doris/1.1/1.1.1-rc03/ - copied from r56023, release/doris/1.1.1-rc03/ Removed: release/doris/1.1.1-rc03/ -

[GitHub] [doris] mrhhsg opened a new pull request, #11321: [fix]Add field of 'is_merge' in TAggregationNode

2022-07-28 Thread GitBox
mrhhsg opened a new pull request, #11321: URL: https://github.com/apache/doris/pull/11321 # Proposed changes Issue Number: close #xxx ## Problem Summary: For better performance, the second aggregation phase should use a different hash algorithm from phase 1. Here add

[GitHub] [doris] github-actions[bot] commented on pull request #11290: [feature-wip](unique-key-merge-on-write) some followup of #11057

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11290: URL: https://github.com/apache/doris/pull/11290#issuecomment-1198832746 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] BiteTheDDDDt commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
BiteThet commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198841288 ```sql | 3021 | 1991, 1991, 32767 | ``` I can't reproduce this case, do you have any clue? -- This is an auto

[GitHub] [doris] jacktengg commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
jacktengg commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198846027 > ```sql > | 3021 | 1991, 1991, 32767 | > ``` > > I can't reproduce this case, do you have any clue? Not

[GitHub] [doris] 924060929 commented on a diff in pull request #11035: [Feature](nereids) support sub-query and alias for TPC-H

2022-07-28 Thread GitBox
924060929 commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r932233689 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/EliminateAliasNode.java: ## @@ -0,0 +1,91 @@ +// Licensed to the Apache Software Foundation (ASF) u

[GitHub] [doris] BiteTheDDDDt commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
BiteThet commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198848877 > Do you have multiple BE? -- 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 t

[GitHub] [doris] jacktengg commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
jacktengg commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198849505 No, single FE and BE. -- 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 c

[GitHub] [doris] JNSimba commented on issue #11258: [Feature] JSON data is dynamically written to the Doris table

2022-07-28 Thread GitBox
JNSimba commented on issue #11258: URL: https://github.com/apache/doris/issues/11258#issuecomment-1198849851 > Many users put all the canal logs of all tables in the business library into one topic, which needs to be distributed before they can use doris-flink-connector. His idea is to edit

[GitHub] [doris] jacktengg commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
jacktengg commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198850088 The test result seems not stable, sometimes it's right, sometimes it's wrong, and the wrong answers can be different. Maybe you can try to run it mutiple times. -- This is an a

[GitHub] [doris] BiteTheDDDDt commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
BiteThet commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198851284 Why the to result have diffrent header? ```sql | abs(`k3`) | group_concat(CAST(abs(`k2`) AS CHARACTER), ORDER BY abs(`k2`), `k1`) | ``` ```sql | abs(`k3`) | gro

[GitHub] [doris] jacktengg commented on issue #11318: [Bug] regression test case test_group_concat fail

2022-07-28 Thread GitBox
jacktengg commented on issue #11318: URL: https://github.com/apache/doris/issues/11318#issuecomment-1198854215 The first one is result of: ``` SELECT abs(k3), group_concat(cast(abs(k2) as varchar) order by abs(k2), k1) FROM test_query_db.baseall group by abs(k3) order by abs(k3) ```

[GitHub] [doris] hf200012 merged pull request #11312: [doc](website)Update column name of node status for `show backends`

2022-07-28 Thread GitBox
hf200012 merged PR #11312: URL: https://github.com/apache/doris/pull/11312 -- 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

[doris] branch master updated (8d31745415 -> c256a689e8)

2022-07-28 Thread jiafengzheng
This is an automated email from the ASF dual-hosted git repository. jiafengzheng pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from 8d31745415 [Regression](planner) Add tpch plan check (#11181) add c256a689e8 [doc](website)Update node statu

[GitHub] [doris] github-actions[bot] commented on pull request #11303: [feature-wip](unique-key-merge-on-write) fix IndexedColumnReader and add primary key index memory tracker, DSIP-018

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11303: URL: https://github.com/apache/doris/pull/11303#issuecomment-1198857798 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] hf200012 merged pull request #11074: [doc]Correct jump link error in flink-doris-connector

2022-07-28 Thread GitBox
hf200012 merged PR #11074: URL: https://github.com/apache/doris/pull/11074 -- 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

[doris] branch master updated: [doc]Correct jump link error in flink-doris-connector (#11074)

2022-07-28 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.git The following commit(s) were added to refs/heads/master by this push: new f70bbd274e [doc]Correct jump link error in

[GitHub] [doris] 924060929 commented on a diff in pull request #11264: [feature](nereids)add InPredicate in expressions

2022-07-28 Thread GitBox
924060929 commented on code in PR #11264: URL: https://github.com/apache/doris/pull/11264#discussion_r932851477 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/InPredicate.java: ## @@ -0,0 +1,82 @@ +// Licensed to the Apache Software Foundation (ASF) under

[doris-website] branch master updated: sync doc

2022-07-28 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 985ee1a8921 sync doc 985ee1a8921 is

[GitHub] [doris] YangShaw commented on a diff in pull request #11264: [feature](nereids)add InPredicate in expressions

2022-07-28 Thread GitBox
YangShaw commented on code in PR #11264: URL: https://github.com/apache/doris/pull/11264#discussion_r932857715 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/InPredicate.java: ## @@ -0,0 +1,82 @@ +// Licensed to the Apache Software Foundation (ASF) under

[GitHub] [doris] HappenLee opened a new pull request, #11322: [Bug] Fix the merge error result in group concat sort

2022-07-28 Thread GitBox
HappenLee opened a new pull request, #11322: URL: https://github.com/apache/doris/pull/11322 # Proposed changes Issue Number: close #11318 ## Problem Summary: ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes - [ ] No -

[GitHub] [doris] hf200012 closed pull request #11166: [doc][fix]Modify docs/community to keep the same as the website site directory structure

2022-07-28 Thread GitBox
hf200012 closed pull request #11166: [doc][fix]Modify docs/community to keep the same as the website site directory structure URL: https://github.com/apache/doris/pull/11166 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

[doris] branch master updated: [feature](Nereids) Add subquery analyze (#11300)

2022-07-28 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 a60cfab844 [feature](Nereids) Add subquery an

[GitHub] [doris] 924060929 merged pull request #11300: [feature](Nereids) Add subquery analyze

2022-07-28 Thread GitBox
924060929 merged PR #11300: URL: https://github.com/apache/doris/pull/11300 -- 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] hf200012 opened a new pull request, #11323: [doc]Added auto_broadcast_join_threshold variable description

2022-07-28 Thread GitBox
hf200012 opened a new pull request, #11323: URL: https://github.com/apache/doris/pull/11323 # Proposed changes Issue Number: close #xxx ## Problem Summary: ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes - [ ] No

[GitHub] [doris] github-actions[bot] commented on pull request #11323: [doc]Added auto_broadcast_join_threshold variable description

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11323: URL: https://github.com/apache/doris/pull/11323#issuecomment-1198883007 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 #11323: [doc]Added auto_broadcast_join_threshold variable description

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11323: URL: https://github.com/apache/doris/pull/11323#issuecomment-1198883031 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] hf200012 closed pull request #10737: [doc]Introducing Apache Doris

2022-07-28 Thread GitBox
hf200012 closed pull request #10737: [doc]Introducing Apache Doris URL: https://github.com/apache/doris/pull/10737 -- 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 unsubscrib

[GitHub] [doris] hf200012 closed pull request #10783: [doc]Added auto_broadcast_join_threshold variable description

2022-07-28 Thread GitBox
hf200012 closed pull request #10783: [doc]Added auto_broadcast_join_threshold variable description URL: https://github.com/apache/doris/pull/10783 -- 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

[doris] branch master updated: [doc]Added auto_broadcast_join_threshold variable description (#11323)

2022-07-28 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.git The following commit(s) were added to refs/heads/master by this push: new 6d0c59d4f0 [doc]Added auto_broadcast_join_t

[GitHub] [doris] hf200012 merged pull request #11323: [doc]Added auto_broadcast_join_threshold variable description

2022-07-28 Thread GitBox
hf200012 merged PR #11323: URL: https://github.com/apache/doris/pull/11323 -- 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

[GitHub] [doris] hf200012 closed pull request #9896: [doc]Doris Basic Concepts Documentation

2022-07-28 Thread GitBox
hf200012 closed pull request #9896: [doc]Doris Basic Concepts Documentation URL: https://github.com/apache/doris/pull/9896 -- 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 un

[GitHub] [doris] github-actions[bot] commented on pull request #11321: [fix]Add field of 'is_merge' in TAggregationNode

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11321: URL: https://github.com/apache/doris/pull/11321#issuecomment-1198889022 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] Gabriel39 opened a new pull request, #11324: [Improvement](vectorized) Remove row-based conjuncts on vectorized nodes

2022-07-28 Thread GitBox
Gabriel39 opened a new pull request, #11324: URL: https://github.com/apache/doris/pull/11324 # Proposed changes Issue Number: close #xxx ## Problem Summary: ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes - [ ] No - [

[GitHub] [doris] github-actions[bot] commented on pull request #11322: [Bug] Fix the merge error result in group concat sort

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11322: URL: https://github.com/apache/doris/pull/11322#issuecomment-1198892863 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 #11322: [Bug] Fix the merge error result in group concat sort

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11322: URL: https://github.com/apache/doris/pull/11322#issuecomment-1198892881 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 #11078: [doc]Stream load doc fix

2022-07-28 Thread GitBox
github-actions[bot] commented on PR #11078: URL: https://github.com/apache/doris/pull/11078#issuecomment-1198897779 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

<    1   2   3   >