[GitHub] [doris] carlvinhust2012 opened a new pull request, #12504: [fix](array-type) support to export the array type to hdfs

2022-09-08 Thread GitBox
carlvinhust2012 opened a new pull request, #12504: URL: https://github.com/apache/doris/pull/12504 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: -

[GitHub] [doris] wangshuo128 commented on pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
wangshuo128 commented on PR #12490: URL: https://github.com/apache/doris/pull/12490#issuecomment-1241573489 BTW, we'd better correct the PR title as well. -- 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

[GitHub] [doris] morrySnow commented on a diff in pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
morrySnow commented on code in PR #12490: URL: https://github.com/apache/doris/pull/12490#discussion_r966686447 ## fe/fe-core/src/main/java/org/apache/doris/nereids/jobs/batch/RewriteJob.java: ## @@ -64,7 +66,8 @@ public RewriteJob(CascadesContext cascadesContext) {

[GitHub] [doris] wangshuo128 commented on pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
wangshuo128 commented on PR #12490: URL: https://github.com/apache/doris/pull/12490#issuecomment-1241572120 > > Just curious, does BE support limit output before calculating projections inside a BE plan node currently? Let's say we have a plan `limit -> project -> olap scan`. After applying

[GitHub] [doris] morrySnow commented on pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
morrySnow commented on PR #12490: URL: https://github.com/apache/doris/pull/12490#issuecomment-1241565983 > Just curious, does BE support limit output before calculating projections inside a BE plan node currently? Let's say we have a plan `limit -> project -> olap scan`. After applying the

[GitHub] [doris] github-actions[bot] commented on pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12490: URL: https://github.com/apache/doris/pull/12490#issuecomment-1241564077 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 #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12490: URL: https://github.com/apache/doris/pull/12490#issuecomment-1241564035 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] morrySnow commented on a diff in pull request #12475: [fix](nereids) there are some invalid slot in other join conjuncts (hash join)

2022-09-08 Thread GitBox
morrySnow commented on code in PR #12475: URL: https://github.com/apache/doris/pull/12475#discussion_r966675954 ## fe/fe-core/src/main/java/org/apache/doris/nereids/glue/translator/PhysicalPlanTranslator.java: ## @@ -471,9 +471,18 @@ public PlanFragment visitPhysicalHashJoin(

[GitHub] [doris] hf200012 opened a new pull request, #12503: [chore](docs)Modify the audit log plugin compilation script

2022-09-08 Thread GitBox
hf200012 opened a new pull request, #12503: URL: https://github.com/apache/doris/pull/12503 # Proposed changes Modify the audit log plugin compilation script Compile the audit loader by default when compiling FE Compile and export to output/fe/plugins directory Issue Numbe

[GitHub] [doris] Yankee24 commented on a diff in pull request #12235: [typo](docs) Update docker-doris in developer

2022-09-08 Thread GitBox
Yankee24 commented on code in PR #12235: URL: https://github.com/apache/doris/pull/12235#discussion_r97462 ## docs/zh-CN/community/developer-guide/docker-dev.md: ## @@ -29,84 +29,27 @@ under the License. ## 相关详细文档导航 -- [使用 Docker 开发镜像编译](/docs/install/source-install/com

[GitHub] [doris] zhangstar333 commented on a diff in pull request #12492: [feature](outfile) support parquet writer

2022-09-08 Thread GitBox
zhangstar333 commented on code in PR #12492: URL: https://github.com/apache/doris/pull/12492#discussion_r966653604 ## be/src/vec/runtime/vparquet_writer.cpp: ## @@ -0,0 +1,782 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agree

[GitHub] [doris] github-actions[bot] commented on pull request #12349: [Improvement](sort) improve partial sort algorithm

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12349: URL: https://github.com/apache/doris/pull/12349#issuecomment-1241510752 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 #12349: [Improvement](sort) improve partial sort algorithm

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12349: URL: https://github.com/apache/doris/pull/12349#issuecomment-1241510726 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] FreeOnePlus opened a new pull request, #12502: [Feature-wip](docker)Initialize and submit code for rapid development of Docker

2022-09-08 Thread GitBox
FreeOnePlus opened a new pull request, #12502: URL: https://github.com/apache/doris/pull/12502 # Proposed changes Submitted shell script code for Dockerfile, Docker-Compose and related registers. ## Problem summary Describe your changes. ## Checklist(Required)

[GitHub] [doris] jackwener commented on a diff in pull request #12497: [improve](Nereids): add optionalAnd to refactor code.

2022-09-08 Thread GitBox
jackwener commented on code in PR #12497: URL: https://github.com/apache/doris/pull/12497#discussion_r966614018 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughJoin.java: ## @@ -114,22 +113,12 @@ public Rule build() { private

[GitHub] [doris] jackwener commented on a diff in pull request #12497: [improve](Nereids): add optionalAnd to refactor code.

2022-09-08 Thread GitBox
jackwener commented on code in PR #12497: URL: https://github.com/apache/doris/pull/12497#discussion_r966613119 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughJoin.java: ## @@ -114,22 +113,12 @@ public Rule build() { private

[GitHub] [doris] zy-kkk opened a new pull request, #12501: [test](join)add join case2

2022-09-08 Thread GitBox
zy-kkk opened a new pull request, #12501: URL: https://github.com/apache/doris/pull/12501 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes

[GitHub] [doris-website] catpineapple opened a new pull request, #91: [fix](doc) add the key columes description of the table model document

2022-09-08 Thread GitBox
catpineapple opened a new pull request, #91: URL: https://github.com/apache/doris-website/pull/91 Add the key columes description of the table model document -- 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] catpineapple opened a new pull request, #12500: [fix](doc) add the key columes description of the table model document

2022-09-08 Thread GitBox
catpineapple opened a new pull request, #12500: URL: https://github.com/apache/doris/pull/12500 # Proposed changes Issue Number: close #xxx ## Problem summary add the key columes description of the table model document ## Checklist(Required) 1. Does it affec

[GitHub] [doris] wangshuo128 commented on pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
wangshuo128 commented on PR #12490: URL: https://github.com/apache/doris/pull/12490#issuecomment-1241480467 Just curious, does BE support limit output before calculating projections inside a BE plan node currently? Let's say we have a plan `limit -> project -> olap scan`. After applying t

[GitHub] [doris] qzsee commented on a diff in pull request #12497: [improve](Nereids): add optionalAnd to refactor code.

2022-09-08 Thread GitBox
qzsee commented on code in PR #12497: URL: https://github.com/apache/doris/pull/12497#discussion_r966611067 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughJoin.java: ## @@ -114,22 +113,12 @@ public Rule build() { private Pla

[GitHub] [doris] qzsee commented on a diff in pull request #12497: [improve](Nereids): add optionalAnd to refactor code.

2022-09-08 Thread GitBox
qzsee commented on code in PR #12497: URL: https://github.com/apache/doris/pull/12497#discussion_r966611067 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughJoin.java: ## @@ -114,22 +113,12 @@ public Rule build() { private Pla

[GitHub] [doris] Kikyou1997 commented on a diff in pull request #12464: [Feature](Nereids) Main framework for selecting rollup index.

2022-09-08 Thread GitBox
Kikyou1997 commented on code in PR #12464: URL: https://github.com/apache/doris/pull/12464#discussion_r966609442 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/mv/SelectRollup.java: ## @@ -0,0 +1,408 @@ +// Licensed to the Apache Software Foundation (ASF) under one +

[doris] tag 1.1.2-rc05 created (now a8323dae4f)

2022-09-08 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to tag 1.1.2-rc05 in repository https://gitbox.apache.org/repos/asf/doris.git at a8323dae4f (commit) No new revisions were added by this update. --

[doris] branch dev-1.1.2 updated: 1.1.2-rc05

2022-09-08 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch dev-1.1.2 in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/dev-1.1.2 by this push: new a8323dae4f 1.1.2-rc05 a8323dae4f is descr

[GitHub] [doris] HappenLee commented on a diff in pull request #12316: [Enhancement](compaction) reduce VMergeIterator copy block

2022-09-08 Thread GitBox
HappenLee commented on code in PR #12316: URL: https://github.com/apache/doris/pull/12316#discussion_r964528447 ## be/src/vec/olap/vgeneric_iterators.cpp: ## @@ -239,7 +254,7 @@ class VMergeIteratorContext { void reset_cur_batch() { _cur_batch_num = 0; } bool is_cur_

[GitHub] [doris] FreeOnePlus closed pull request #12480: [Feature-wip](docker)Initialize and submit code for rapid development of Docker

2022-09-08 Thread GitBox
FreeOnePlus closed pull request #12480: [Feature-wip](docker)Initialize and submit code for rapid development of Docker URL: https://github.com/apache/doris/pull/12480 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the U

[GitHub] [doris] FreeOnePlus commented on pull request #12480: [Feature-wip](docker)Initialize and submit code for rapid development of Docker

2022-09-08 Thread GitBox
FreeOnePlus commented on PR #12480: URL: https://github.com/apache/doris/pull/12480#issuecomment-1241470912 > Hi, please check your own branch. This pr should not change so many files. sorry~ :( -- This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [doris] JNSimba opened a new pull request, #12499: [Doc](Streamload) update streamload default timeout

2022-09-08 Thread GitBox
JNSimba opened a new pull request, #12499: URL: https://github.com/apache/doris/pull/12499 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes

[doris] branch master updated (b1db8aef58 -> c9a6486f8c)

2022-09-08 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 b1db8aef58 [regression](array-type) add some case for array insert (#12474) add c9a6486f8c [fix](Nereids) subq

[GitHub] [doris] morrySnow merged pull request #12494: [fix](Nereids) subquery predicate's slot appears in having's output by mistake

2022-09-08 Thread GitBox
morrySnow merged PR #12494: URL: https://github.com/apache/doris/pull/12494 -- 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

[doris] branch dev-1.1.2 updated: [fix](vectorized load) fix incomplete errmsg when find partition failed (#12485)

2022-09-08 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.1.2 in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/dev-1.1.2 by this push: new 4b25a6ec1e [fix](vectorized load) fix i

[GitHub] [doris] wangshuo128 commented on pull request #12464: [Feature](Nereids) Main framework for selecting rollup index.

2022-09-08 Thread GitBox
wangshuo128 commented on PR #12464: URL: https://github.com/apache/doris/pull/12464#issuecomment-1241456101 > ExpressionUtils already has a function to extract conjuncts from an expression. Actually, `Filter. getConjuncts` would delegate to `ExpressionUtils.extractConjunction`. Addi

[GitHub] [doris] cambyzju commented on a diff in pull request #12293: [Enhancement](array-type) record offsets info to speed up array colum…

2022-09-08 Thread GitBox
cambyzju commented on code in PR #12293: URL: https://github.com/apache/doris/pull/12293#discussion_r966589553 ## be/src/olap/rowset/segment_v2/column_reader.cpp: ## @@ -410,18 +410,33 @@ Status ArrayFileColumnIterator::next_batch(size_t* n, ColumnBlockView* dst, bool Colu

[doris] branch dev-1.1.2 updated (71ffa436d3 -> 4461fd70c0)

2022-09-08 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch dev-1.1.2 in repository https://gitbox.apache.org/repos/asf/doris.git from 71ffa436d3 [enhancement](tcmalloc) add tcmalloc aggressive_memory_decommit conf (#12451) add 4461fd70c0 [imp

[doris] branch master updated (73351917ab -> b1db8aef58)

2022-09-08 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from 73351917ab [Enhancement](array-type) Add readable information in subquery for array type #12463 add b1db8aef58

[GitHub] [doris] yiguolei merged pull request #12474: [regression](array-type) add some case for array insert

2022-09-08 Thread GitBox
yiguolei merged PR #12474: URL: https://github.com/apache/doris/pull/12474 -- 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 (a04f9814fe -> 73351917ab)

2022-09-08 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from a04f9814fe [fix](Nereids) column prune generate empty project list on join's child (#12486) add 73351917ab [Enh

[GitHub] [doris] yiguolei merged pull request #12463: [Enhancement](array-type) Add readable information in subquery for array type

2022-09-08 Thread GitBox
yiguolei merged PR #12463: URL: https://github.com/apache/doris/pull/12463 -- 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] HappenLee commented on a diff in pull request #12349: [Improvement](sort) improve partial sort algorithm

2022-09-08 Thread GitBox
HappenLee commented on code in PR #12349: URL: https://github.com/apache/doris/pull/12349#discussion_r966585760 ## be/src/vec/core/sort_block.h: ## @@ -46,9 +48,412 @@ void stable_get_permutation(const Block& block, const SortDescription& descripti */ bool is_already_sorted

[GitHub] [doris] HappenLee commented on a diff in pull request #12349: [Improvement](sort) improve partial sort algorithm

2022-09-08 Thread GitBox
HappenLee commented on code in PR #12349: URL: https://github.com/apache/doris/pull/12349#discussion_r966578860 ## be/src/vec/core/sort_block.h: ## @@ -46,9 +48,412 @@ void stable_get_permutation(const Block& block, const SortDescription& descripti */ bool is_already_sorted

[GitHub] [doris] nextdreamblue opened a new pull request, #12498: [feature](restore) add restore new property 'reserve_dynamic_partition_enable'

2022-09-08 Thread GitBox
nextdreamblue opened a new pull request, #12498: URL: https://github.com/apache/doris/pull/12498 # Proposed changes Issue Number: close #xxx ## Problem summary add restore new property 'reserve_dynamic_partition_enable', which means you can get a table with dynamic_pa

[GitHub] [doris] Kikyou1997 commented on pull request #12464: [Feature](Nereids) Main framework for selecting rollup index.

2022-09-08 Thread GitBox
Kikyou1997 commented on PR #12464: URL: https://github.com/apache/doris/pull/12464#issuecomment-1241444038 ExpressionUtils already has a function to extract conjuncts from an expression. -- This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [doris] jackwener closed pull request #12489: [fix](Nereids): fix having in Nereids regress test.

2022-09-08 Thread GitBox
jackwener closed pull request #12489: [fix](Nereids): fix having in Nereids regress test. URL: https://github.com/apache/doris/pull/12489 -- 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

[doris] branch master updated (f98ec06783 -> a04f9814fe)

2022-09-08 Thread jakevin
This is an automated email from the ASF dual-hosted git repository. jakevin pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from f98ec06783 [feature-wip](new-scan) Add memtracker and span for new olap scan node (#12281) add a04f9814fe [fix](

[GitHub] [doris] jackwener merged pull request #12486: [fix](Nereids) column prune generate empty project list on join's child

2022-09-08 Thread GitBox
jackwener merged PR #12486: URL: https://github.com/apache/doris/pull/12486 -- 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] jackwener opened a new pull request, #12497: [improve](Nereids): add optionalAnd to refactor code.

2022-09-08 Thread GitBox
jackwener opened a new pull request, #12497: URL: https://github.com/apache/doris/pull/12497 # Proposed changes Issue Number: close #xxx ## Problem summary add optionalAnd to refactor code. ## Checklist(Required) 1. Does it affect the original behavior:

[GitHub] [doris] github-actions[bot] commented on pull request #12486: [fix](Nereids) column prune generate empty project list on join's child

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12486: URL: https://github.com/apache/doris/pull/12486#issuecomment-1241424661 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 #12486: [fix](Nereids) column prune generate empty project list on join's child

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12486: URL: https://github.com/apache/doris/pull/12486#issuecomment-1241424644 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 #12494: [fix](Nereids) subquery predicate's slot appears in having's output by mistake

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12494: URL: https://github.com/apache/doris/pull/12494#issuecomment-1241424027 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 #12494: [fix](Nereids) subquery predicate's slot appears in having's output by mistake

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12494: URL: https://github.com/apache/doris/pull/12494#issuecomment-1241423969 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] morrySnow commented on a diff in pull request #12490: [feature](nereids) push down predicate through limit

2022-09-08 Thread GitBox
morrySnow commented on code in PR #12490: URL: https://github.com/apache/doris/pull/12490#discussion_r966559758 ## fe/fe-core/src/main/java/org/apache/doris/nereids/jobs/batch/RewriteJob.java: ## @@ -64,6 +66,7 @@ public RewriteJob(CascadesContext cascadesContext) {

[doris] branch master updated (a468085efe -> f98ec06783)

2022-09-08 Thread zouxinyi
This is an automated email from the ASF dual-hosted git repository. zouxinyi pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from a468085efe [improvement](error info)improve the s3 path err msg #12438 add f98ec06783 [feature-wip](new-scan) Ad

[GitHub] [doris] xinyiZzz merged pull request #12281: [feature-wip](new-scan) Add memtracker and span for new olap scan node

2022-09-08 Thread GitBox
xinyiZzz merged PR #12281: URL: https://github.com/apache/doris/pull/12281 -- 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] Jibing-Li commented on a diff in pull request #12491: [improvement](new-scan) avoid too many scanner context scheduling

2022-09-08 Thread GitBox
Jibing-Li commented on code in PR #12491: URL: https://github.com/apache/doris/pull/12491#discussion_r966546585 ## be/src/vec/exec/scan/scanner_scheduler.cpp: ## @@ -98,17 +98,15 @@ void ScannerScheduler::_schedule_scanners(ScannerContext* ctx) { } std::list this_ru

[doris-website] branch master updated: fix command of reseting 'vm.max_map_count' in doc (#83)

2022-09-08 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 d5c3d5ff9ac fix command of reseting

[GitHub] [doris-website] hf200012 merged pull request #83: [FIX] fix command of reseting 'vm.max_map_count' in doc

2022-09-08 Thread GitBox
hf200012 merged PR #83: URL: https://github.com/apache/doris-website/pull/83 -- 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: [improvement](error info)improve the s3 path err msg #12438

2022-09-08 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 a468085efe [improvement](error info)improve the

[GitHub] [doris] yiguolei merged pull request #12438: [improvement](error info)improve the s3 path err msg

2022-09-08 Thread GitBox
yiguolei merged PR #12438: URL: https://github.com/apache/doris/pull/12438 -- 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: [feature-wip](parquet-reader) bug fix, parquet footer buffer is small when containing many columns (#12477)

2022-09-08 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new b4663062da [feature-wip](parquet-reader) bug

[GitHub] [doris] morningman merged pull request #12477: [feature-wip](parquet-reader) bug fix, footer buffer is small when reading many columns

2022-09-08 Thread GitBox
morningman merged PR #12477: URL: https://github.com/apache/doris/pull/12477 -- 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: [bugfix](odbc) escape identifiers for sqlserver and postgresql (#12487)

2022-09-08 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 b45a8379eb [bugfix](odbc) escape identifiers fo

[GitHub] [doris] yiguolei merged pull request #12487: [bugfix](odbc) escape identifiers for sqlserver and postgresql

2022-09-08 Thread GitBox
yiguolei merged PR #12487: URL: https://github.com/apache/doris/pull/12487 -- 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: [feature-wip](parquet-reader) add gzip compression codec (#12488)

2022-09-08 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 3c4c4b1a87 [feature-wip](parquet-reader) add gz

[GitHub] [doris] yiguolei merged pull request #12488: [feature-wip](parquet-reader) add gzip compression codec

2022-09-08 Thread GitBox
yiguolei merged PR #12488: URL: https://github.com/apache/doris/pull/12488 -- 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](performance) performance doc and script update (#12493)

2022-09-08 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 3cc06820c4 [doc](performance) performance doc a

[GitHub] [doris] yiguolei merged pull request #12493: [doc](performance) performance doc and script update

2022-09-08 Thread GitBox
yiguolei merged PR #12493: URL: https://github.com/apache/doris/pull/12493 -- 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: delete_doc_upd (#12473)

2022-09-08 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 2aad293d8a delete_doc_upd (#12473) 2aad293d

[GitHub] [doris] hf200012 merged pull request #12473: [fix](doc) remove the ambiguity in the description of the operating instructions document

2022-09-08 Thread GitBox
hf200012 merged PR #12473: URL: https://github.com/apache/doris/pull/12473 -- 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] github-actions[bot] commented on pull request #12493: [doc](performance) performance doc and script update

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12493: URL: https://github.com/apache/doris/pull/12493#issuecomment-1241386209 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 #12493: [doc](performance) performance doc and script update

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12493: URL: https://github.com/apache/doris/pull/12493#issuecomment-1241386192 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 (e84272ed43 -> 22dec46f48)

2022-09-08 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from e84272ed43 [improvment](planner) unset common fields to reduce plan thrift size (#12495) add 22dec46f48 [fix](v

[GitHub] [doris] yiguolei closed issue #12484: [Bug](vectorized load) incomplete errmsg when find partition failed

2022-09-08 Thread GitBox
yiguolei closed issue #12484: [Bug](vectorized load) incomplete errmsg when find partition failed URL: https://github.com/apache/doris/issues/12484 -- 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 t

[GitHub] [doris] yiguolei merged pull request #12485: [fix](vectorized load) fix incomplete errmsg when find partition failed [#12484]

2022-09-08 Thread GitBox
yiguolei merged PR #12485: URL: https://github.com/apache/doris/pull/12485 -- 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: [improvment](planner) unset common fields to reduce plan thrift size (#12495)

2022-09-08 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 e84272ed43 [improvment](planner) unset common f

[GitHub] [doris] yiguolei merged pull request #12495: [improvment](planner) unset common fields to reduce plan thrift size

2022-09-08 Thread GitBox
yiguolei merged PR #12495: URL: https://github.com/apache/doris/pull/12495 -- 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] github-actions[bot] commented on pull request #12495: [improvment](planner) unset common fields to reduce plan thrift size

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12495: URL: https://github.com/apache/doris/pull/12495#issuecomment-1241373568 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 #12495: [improvment](planner) unset common fields to reduce plan thrift size

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12495: URL: https://github.com/apache/doris/pull/12495#issuecomment-1241373538 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] closed pull request #7940: [Feature] Add table function framework and add numbers table function

2022-09-08 Thread GitBox
github-actions[bot] closed pull request #7940: [Feature] Add table function framework and add numbers table function URL: https://github.com/apache/doris/pull/7940 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL a

[GitHub] [doris] github-actions[bot] commented on pull request #12473: [fix](doc) remove the ambiguity in the description of the operating instructions document

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12473: URL: https://github.com/apache/doris/pull/12473#issuecomment-1241343062 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 #12473: [fix](doc) remove the ambiguity in the description of the operating instructions document

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12473: URL: https://github.com/apache/doris/pull/12473#issuecomment-1241343040 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] xinyiZzz opened a new pull request, #12496: [enhancement](memory) Optimize jemalloc compilation and configuration

2022-09-08 Thread GitBox
xinyiZzz opened a new pull request, #12496: URL: https://github.com/apache/doris/pull/12496 # Proposed changes Issue Number: close #xxx ## Problem summary 1. Before jemalloc was compiled with arrow, it was compiled separately 2. Modify the default parameters of jemallo

[doris] branch master updated: [enhancement](Nereids) change aggregate and join stats calc algorithm (#12447)

2022-09-08 Thread morrysnow
This is an automated email from the ASF dual-hosted git repository. morrysnow 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 d2a23a4cf9 [enhancement](Nereids) change aggre

[GitHub] [doris] morrySnow merged pull request #12447: [enhancement](Nereids)change aggregate and join stats calc algorithm

2022-09-08 Thread GitBox
morrySnow merged PR #12447: URL: https://github.com/apache/doris/pull/12447 -- 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] morrySnow closed pull request #12433: [fix](Nereids) local aggregate output type is mismatch with BE

2022-09-08 Thread GitBox
morrySnow closed pull request #12433: [fix](Nereids) local aggregate output type is mismatch with BE URL: https://github.com/apache/doris/pull/12433 -- 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 t

[GitHub] [doris] github-actions[bot] commented on pull request #12488: [feature-wip](parquet-reader) add gzip compression codec

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12488: URL: https://github.com/apache/doris/pull/12488#issuecomment-1240979099 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 #12488: [feature-wip](parquet-reader) add gzip compression codec

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12488: URL: https://github.com/apache/doris/pull/12488#issuecomment-1240979063 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 #12487: [bugfix](odbc) escape identifiers for sqlserver and postgresql

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12487: URL: https://github.com/apache/doris/pull/12487#issuecomment-1240977152 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 #12487: [bugfix](odbc) escape identifiers for sqlserver and postgresql

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12487: URL: https://github.com/apache/doris/pull/12487#issuecomment-1240977203 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] morrySnow commented on a diff in pull request #12482: [feature-wip](nereids) Cast children type of cmp expression to the common type

2022-09-08 Thread GitBox
morrySnow commented on code in PR #12482: URL: https://github.com/apache/doris/pull/12482#discussion_r966182730 ## fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java: ## @@ -189,6 +192,8 @@ public static Optional findTightestCommonType(DataType left,

[GitHub] [doris] morrySnow commented on a diff in pull request #12482: [feature-wip](nereids) Cast children type of cmp expression to the common type

2022-09-08 Thread GitBox
morrySnow commented on code in PR #12482: URL: https://github.com/apache/doris/pull/12482#discussion_r966182730 ## fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java: ## @@ -189,6 +192,8 @@ public static Optional findTightestCommonType(DataType left,

[GitHub] [doris] morrySnow merged pull request #12468: [feature](nereids) implement uncheckedCast method in VarcharLiteral

2022-09-08 Thread GitBox
morrySnow merged PR #12468: URL: https://github.com/apache/doris/pull/12468 -- 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

[doris] branch master updated: [feature](Nereids) implement uncheckedCast method in VarcharLiteral (#12468)

2022-09-08 Thread morrysnow
This is an automated email from the ASF dual-hosted git repository. morrysnow 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 b4f0f39e77 [feature](Nereids) implement unchec

[GitHub] [doris] github-actions[bot] commented on pull request #12418: [fix](profile) fix query instance profile may be lost.

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12418: URL: https://github.com/apache/doris/pull/12418#issuecomment-1240950956 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 #12418: [fix](profile) fix query instance profile may be lost.

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12418: URL: https://github.com/apache/doris/pull/12418#issuecomment-1240950912 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 #12483: [enhancement](Nereids) add all necessary PhysicalDistribute in CostAndEnforcerJob

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12483: URL: https://github.com/apache/doris/pull/12483#issuecomment-1240948573 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 #12483: [enhancement](Nereids) add all necessary PhysicalDistribute in CostAndEnforcerJob

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12483: URL: https://github.com/apache/doris/pull/12483#issuecomment-1240948526 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 #12160: [feature](light-schema-change) fix light-schema-change and add more cases

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12160: URL: https://github.com/apache/doris/pull/12160#issuecomment-1240947811 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 #12160: [feature](light-schema-change) fix light-schema-change and add more cases

2022-09-08 Thread GitBox
github-actions[bot] commented on PR #12160: URL: https://github.com/apache/doris/pull/12160#issuecomment-1240947781 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 opened a new pull request, #12495: [improvment](planner) unset common fields to reduce plan thrift size

2022-09-08 Thread GitBox
morningman opened a new pull request, #12495: URL: https://github.com/apache/doris/pull/12495 # Proposed changes Issue Number: close #xxx ## Problem summary For query with 1656 union, the plan thrift size will be reduced from 400MB+ to 2MB. This optimization is introd

  1   2   3   >