[GitHub] [doris] hello-stephen opened a new pull request, #22290: [pipeline](update)exclude block case test_round

2023-07-27 Thread via GitHub


hello-stephen opened a new pull request, #22290:
URL: https://github.com/apache/doris/pull/22290

   ## Proposed changes
   
   Issue Number: close #xxx
   
   
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22290: [pipeline](update)exclude block case test_round

2023-07-27 Thread via GitHub


hello-stephen commented on PR #22290:
URL: https://github.com/apache/doris/pull/22290#issuecomment-1653021217

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zhannngchen commented on a diff in pull request #22275: (vertical compaction) fix vertical compaction core

2023-07-27 Thread via GitHub


zhannngchen commented on code in PR #22275:
URL: https://github.com/apache/doris/pull/22275#discussion_r1275821370


##
be/src/olap/rowset/segment_v2/segment_writer.cpp:
##
@@ -631,7 +631,7 @@ Status SegmentWriter::append_block(const vectorized::Block* 
block, size_t row_po
 if (_tablet_schema->keys_type() == UNIQUE_KEYS && 
_opts.enable_unique_key_merge_on_write) {
 // create primary indexes
 std::string last_key;
-for (size_t pos = 0; pos < num_rows; pos++) {
+for (size_t pos = row_pos; pos < num_rows; pos++) {

Review Comment:
   should be `pos < row_pos + num_rows`?



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22290: [pipeline](update)exclude block case test_round

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22290:
URL: https://github.com/apache/doris/pull/22290#issuecomment-1653026861

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22290: [pipeline](update)exclude block case test_round

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22290:
URL: https://github.com/apache/doris/pull/22290#issuecomment-1653026897

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zhannngchen commented on a diff in pull request #22275: (vertical compaction) fix vertical compaction core

2023-07-27 Thread via GitHub


zhannngchen commented on code in PR #22275:
URL: https://github.com/apache/doris/pull/22275#discussion_r1275822486


##
be/src/olap/rowset/vertical_beta_rowset_writer.cpp:
##
@@ -99,19 +99,53 @@ Status VerticalBetaRowsetWriter::add_columns(const 
vectorized::Block* block,
 uint32_t num_rows_written = 
_segment_writers[_cur_writer_idx]->num_rows_written();
 VLOG_NOTICE << "num_rows_written: " << num_rows_written
 << ", _cur_writer_idx: " << _cur_writer_idx;
+uint32_t num_rows_key_group = 
_segment_writers[_cur_writer_idx]->row_count();
+DCHECK(num_rows_key_group > 0);
 // init if it's first value column write in current segment
 if (_cur_writer_idx == 0 && num_rows_written == 0) {
 VLOG_NOTICE << "init first value column segment writer";
 RETURN_IF_ERROR(_segment_writers[_cur_writer_idx]->init(col_ids, 
is_key));
 }
-if (num_rows_written > max_rows_per_segment) {
+size_t start_offset = 0, limit = num_rows;

Review Comment:
   Add more comments here



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Gabriel39 merged pull request #22280: [minor](refactor) refine function logics

2023-07-27 Thread via GitHub


Gabriel39 merged PR #22280:
URL: https://github.com/apache/doris/pull/22280


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch master updated: [minor](refactor) refine function logics (#22280)

2023-07-27 Thread gabriellee
This is an automated email from the ASF dual-hosted git repository.

gabriellee 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 e78afedd0a [minor](refactor) refine function logics (#22280)
e78afedd0a is described below

commit e78afedd0a46ce2d49d547558f35b0507178159b
Author: Gabriel 
AuthorDate: Thu Jul 27 15:09:23 2023 +0800

[minor](refactor) refine function logics (#22280)
---
 .../src/main/java/org/apache/doris/catalog/FunctionSet.java  | 9 ++---
 tools/tpch-tools/conf/doris-cluster.conf | 2 +-
 2 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/FunctionSet.java 
b/fe/fe-core/src/main/java/org/apache/doris/catalog/FunctionSet.java
index 881b507fee..869b59cd86 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/FunctionSet.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/FunctionSet.java
@@ -459,13 +459,8 @@ public class FunctionSet {
 if (ConnectContext.get() != null
 && 
ConnectContext.get().getSessionVariable().roundPreciseDecimalV2Value
 && 
FunctionCallExpr.ROUND_FUNCTION_SET.contains(desc.functionName())
-&& descArgType.isDecimalV2() && 
candicateArgType.getPrimitiveType() != PrimitiveType.DECIMAL128) {
-return false;
-} else if (ConnectContext.get() != null
-&& 
ConnectContext.get().getSessionVariable().roundPreciseDecimalV2Value
-&& 
FunctionCallExpr.ROUND_FUNCTION_SET.contains(desc.functionName())
-&& descArgType.isDecimalV2() && 
candicateArgType.getPrimitiveType() == PrimitiveType.DECIMAL128) {
-return true;
+&& descArgType.isDecimalV2()) {
+return candicateArgType.getPrimitiveType() == 
PrimitiveType.DECIMAL128;
 }
 if ((descArgType.isDecimalV3() && candicateArgType.isDecimalV2())
 || (descArgType.isDecimalV2() && 
candicateArgType.isDecimalV3())) {
diff --git a/tools/tpch-tools/conf/doris-cluster.conf 
b/tools/tpch-tools/conf/doris-cluster.conf
index b2f6d41125..9417bcb9e0 100644
--- a/tools/tpch-tools/conf/doris-cluster.conf
+++ b/tools/tpch-tools/conf/doris-cluster.conf
@@ -26,4 +26,4 @@ export USER='root'
 # Doris password
 export PASSWORD=''
 # The database where TPC-H tables located
-export DB='tpch1G'
+export DB='tpch'


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] BiteTheDDDDt opened a new pull request, #22291: [Chore](regression-test) remove insert into select on enable nereids dml

2023-07-27 Thread via GitHub


BiteThet opened a new pull request, #22291:
URL: https://github.com/apache/doris/pull/22291

   ## Proposed changes
   remove insert into select on enable nereids dml
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] BiteTheDDDDt commented on pull request #22291: [Chore](regression-test) remove insert into select on enable nereids dml

2023-07-27 Thread via GitHub


BiteThet commented on PR #22291:
URL: https://github.com/apache/doris/pull/22291#issuecomment-1653032166

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22273: [fix](test) change some names in regression test to avoid conflict name running in parallel

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22273:
URL: https://github.com/apache/doris/pull/22273#issuecomment-1653041029

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22273: [fix](test) change some names in regression test to avoid conflict name running in parallel

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22273:
URL: https://github.com/apache/doris/pull/22273#issuecomment-1653041112

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22228: [fix](multi-catalog) complex types parsing failed, with unexpected nulls and rows

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #8:
URL: https://github.com/apache/doris/pull/8#issuecomment-1653047549

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Gabriel39 opened a new pull request, #22292: [improvement](variable) add annotations for variables

2023-07-27 Thread via GitHub


Gabriel39 opened a new pull request, #22292:
URL: https://github.com/apache/doris/pull/22292

   ## Proposed changes
   
   Define EXPERIMENTAL / DEPRECATED / EXPERIMENTAL_ONLINE / NONE types for 
variables.
   
   
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] AshinGau commented on pull request #22228: [fix](multi-catalog) complex types parsing failed, with unexpected nulls and rows

2023-07-27 Thread via GitHub


AshinGau commented on PR #8:
URL: https://github.com/apache/doris/pull/8#issuecomment-1653054995

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] kaka11chen commented on pull request #22273: [fix](test) change some names in regression test to avoid conflict name running in parallel

2023-07-27 Thread via GitHub


kaka11chen commented on PR #22273:
URL: https://github.com/apache/doris/pull/22273#issuecomment-1653056101

   LGTM


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22228: [fix](multi-catalog) complex types parsing failed, with unexpected nulls and rows

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #8:
URL: https://github.com/apache/doris/pull/8#issuecomment-1653063166

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] englefly merged pull request #22290: [pipeline](update)exclude block case test_round

2023-07-27 Thread via GitHub


englefly merged PR #22290:
URL: https://github.com/apache/doris/pull/22290


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch master updated: [pipeline](update)exclude block case test_round (#22290)

2023-07-27 Thread englefly
This is an automated email from the ASF dual-hosted git repository.

englefly 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 0670e38d5c [pipeline](update)exclude block case test_round (#22290)
0670e38d5c is described below

commit 0670e38d5c554a6b99d6fe58426565f974eee2c5
Author: Dongyang Li 
AuthorDate: Thu Jul 27 15:38:00 2023 +0800

[pipeline](update)exclude block case test_round (#22290)
---
 regression-test/pipeline/p0/conf/regression-conf.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/regression-test/pipeline/p0/conf/regression-conf.groovy 
b/regression-test/pipeline/p0/conf/regression-conf.groovy
index 0ea3300d19..0563df874a 100644
--- a/regression-test/pipeline/p0/conf/regression-conf.groovy
+++ b/regression-test/pipeline/p0/conf/regression-conf.groovy
@@ -54,7 +54,7 @@ testDirectories = ""
 // this groups will not be executed
 excludeGroups = ""
 // this suites will not be executed
-excludeSuites = 
"test_cast_string_to_array,test_broker_load,test_spark_load,test_analyze_stats_p1,test_refresh_mtmv"
+excludeSuites = 
"test_round,test_cast_string_to_array,test_broker_load,test_spark_load,test_analyze_stats_p1,test_refresh_mtmv"
 // this directories will not be executed
 excludeDirectories = ""
 


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Kikyou1997 commented on pull request #22227: [enhancement](nereids) Scale replica of stats table to 3 when it's possible

2023-07-27 Thread via GitHub


Kikyou1997 commented on PR #7:
URL: https://github.com/apache/doris/pull/7#issuecomment-1653066400

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22269: [feature](time) using timev2 type to replace the old time type.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22269:
URL: https://github.com/apache/doris/pull/22269#issuecomment-1653069286

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] JackDrogon opened a new pull request, #22293: [enhancement](binlog) CreateTable inherit db binlog && Add some checks

2023-07-27 Thread via GitHub


JackDrogon opened a new pull request, #22293:
URL: https://github.com/apache/doris/pull/22293

   ## Proposed changes
   
   Create table inherit db binlog, but it can use some standalone binlog. 
Binlog enable should be checked by comparing with db. We can't create a table 
with binlog disable when db binlog is enable
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] dataroaring commented on pull request #22293: [enhancement](binlog) CreateTable inherit db binlog && Add some checks

2023-07-27 Thread via GitHub


dataroaring commented on PR #22293:
URL: https://github.com/apache/doris/pull/22293#issuecomment-1653073127

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Gabriel39 commented on pull request #22292: [improvement](variable) add annotations for variables

2023-07-27 Thread via GitHub


Gabriel39 commented on PR #22292:
URL: https://github.com/apache/doris/pull/22292#issuecomment-1653073178

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22293: [enhancement](binlog) CreateTable inherit db binlog && Add some checks

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22293:
URL: https://github.com/apache/doris/pull/22293#issuecomment-1653074392

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22293: [enhancement](binlog) CreateTable inherit db binlog && Add some checks

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22293:
URL: https://github.com/apache/doris/pull/22293#issuecomment-1653074335

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] yiguolei commented on a diff in pull request #22281: [fix](cast) fix wrong result of casting empty string to array date

2023-07-27 Thread via GitHub


yiguolei commented on code in PR #22281:
URL: https://github.com/apache/doris/pull/22281#discussion_r1275866287


##
regression-test/suites/query_p0/sql_functions/cast_function/test_cast_string_to_array.groovy:
##
@@ -41,5 +41,14 @@ suite("test_cast_string_to_array") {
 qt_sql """ select cast ("[1,2,3,,,]" as array) """
 qt_sql """ select cast ("[a,b,c,,,]" as array) """
 qt_sql """ select cast ("[1.34,2.01,,,]" as array) """
+
+sql """ ADMIN SET FRONTEND CONFIG ("enable_date_conversion" = "false"); """
+qt_sql """ select cast ("[2022-09-01,,]" as array) """
+qt_sql """ select cast ("[2022-09-01,,]" as array) """
+qt_sql """ select cast(cast ("[2022-09-01,,]" as array) as 
array) """
+
+sql """ ADMIN SET FRONTEND CONFIG ("enable_date_conversion" = "true"); """
 qt_sql """ select cast ("[2022-09-01,,]" as array) """

Review Comment:
   what's the difference between [2022-09-01, , ]  and [2022-09-01, NULL, NULL] 
 ?



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk commented on pull request #22098: [feature](planner) modify multi partition prefix value

2023-07-27 Thread via GitHub


zy-kkk commented on PR #22098:
URL: https://github.com/apache/doris/pull/22098#issuecomment-1653079484

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22098: [feature](planner) modify multi partition prefix value

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22098:
URL: https://github.com/apache/doris/pull/22098#issuecomment-1653080407

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22098: [feature](planner) modify multi partition prefix value

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22098:
URL: https://github.com/apache/doris/pull/22098#issuecomment-1653080467

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk merged pull request #21532: [feature](catalog) support clob type in oracle catalog

2023-07-27 Thread via GitHub


zy-kkk merged PR #21532:
URL: https://github.com/apache/doris/pull/21532


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch master updated (0670e38d5c -> 4f6a3c5bf0)

2023-07-27 Thread zykkk
This is an automated email from the ASF dual-hosted git repository.

zykkk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


from 0670e38d5c [pipeline](update)exclude block case test_round (#22290)
 add 4f6a3c5bf0 [feature](catalog) support clob type in oracle jdbc catalog 
(#21532)

No new revisions were added by this update.

Summary of changes:
 .../docker-compose/oracle/init/03-create-table.sql |  5 +++
 .../docker-compose/oracle/init/04-insert.sql   |  2 +
 .../java/org/apache/doris/jdbc/JdbcExecutor.java   | 50 ++
 .../doris/external/jdbc/JdbcOracleClient.java  |  2 +-
 .../jdbc_catalog_p0/test_oracle_jdbc_catalog.out   |  4 ++
 .../test_oracle_jdbc_catalog.groovy| 13 ++
 6 files changed, 75 insertions(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zhannngchen merged pull request #22215: [test](regression) add cases for partial update with sequence_type

2023-07-27 Thread via GitHub


zhannngchen merged PR #22215:
URL: https://github.com/apache/doris/pull/22215


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch master updated (4f6a3c5bf0 -> 0512e0b168)

2023-07-27 Thread zhangchen
This is an automated email from the ASF dual-hosted git repository.

zhangchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


from 4f6a3c5bf0 [feature](catalog) support clob type in oracle jdbc catalog 
(#21532)
 add 0512e0b168 [test](regression) add cases for partial update with 
sequence_type (#22215)

No new revisions were added by this update.

Summary of changes:
 .../partial_update/basic_with_seq.csv  |  4 +-
 .../partial_update/basic_with_test.csv |  5 ++
 .../partial_update/basic_with_test2.csv|  5 ++
 .../partial_update/test_partial_update_seq_col.out |  3 +-
 .../test_partial_update_seq_type.out   | 35 
 .../test_partial_update_seq_col.groovy |  2 +-
 groovy => test_partial_update_seq_type.groovy} | 92 +-
 7 files changed, 122 insertions(+), 24 deletions(-)
 create mode 100644 
regression-test/data/unique_with_mow_p0/partial_update/basic_with_test.csv
 create mode 100644 
regression-test/data/unique_with_mow_p0/partial_update/basic_with_test2.csv
 create mode 100644 
regression-test/data/unique_with_mow_p0/partial_update/test_partial_update_seq_type.out
 copy 
regression-test/suites/unique_with_mow_p0/partial_update/{test_partial_update_seq_col.groovy
 => test_partial_update_seq_type.groovy} (56%)


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris-thirdparty] adonis0147 opened a new pull request, #108: [chore](workflow) Increase the build space for master branch

2023-07-27 Thread via GitHub


adonis0147 opened a new pull request, #108:
URL: https://github.com/apache/doris-thirdparty/pull/108

   There is not enough disk space to build the third-party libraries, we should 
increase the build space.


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris-thirdparty] branch main updated: [chore](workflow) Increase the build space for master branch (#108)

2023-07-27 Thread adonisling
This is an automated email from the ASF dual-hosted git repository.

adonisling pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/doris-thirdparty.git


The following commit(s) were added to refs/heads/main by this push:
 new 5dd39554 [chore](workflow) Increase the build space for master branch 
(#108)
5dd39554 is described below

commit 5dd39554ca581e1639d0b7e53e85ffe6f3c36456
Author: Adonis Ling 
AuthorDate: Thu Jul 27 16:00:44 2023 +0800

[chore](workflow) Increase the build space for master branch (#108)

There is not enough disk space to build the third-party libraries, we 
should increase the build space.
---
 .github/workflows/build.yml | 19 ++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e4e7d415..fd5885f0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -150,6 +150,23 @@ jobs:
   GH_REPO: ${{ github.repository }}
   GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 steps:
+  - name: Checkout easimon/maximize-build-space
+if: ${{ matrix.config.name == 'Linux' }}
+run: |
+  git clone -b v7 https://github.com/easimon/maximize-build-space
+
+  - name: Maximize build space
+if: ${{ matrix.config.name == 'Linux' }}
+uses: ./maximize-build-space
+with:
+root-reserve-mb: 4096
+swap-size-mb: 8192
+remove-dotnet: 'true'
+remove-android: 'true'
+remove-haskell: 'true'
+remove-codeql: 'true'
+remove-docker-images: 'true'
+
   - name: Checkout
 uses: actions/checkout@v3
 with:
@@ -174,7 +191,7 @@ jobs:
 sudo DEBIAN_FRONTEND=noninteractive apt install --yes ${{ 
matrix.config.packages }}
 
 mkdir -p "${DEFAULT_DIR}"
-wget 
https://github.com/amosbird/ldb_toolchain_gen/releases/download/v0.17/ldb_toolchain_gen.sh
 \
+wget 
https://github.com/amosbird/ldb_toolchain_gen/releases/download/v0.18/ldb_toolchain_gen.sh
 \
   -q -O /tmp/ldb_toolchain_gen.sh
 bash /tmp/ldb_toolchain_gen.sh "${DEFAULT_DIR}/ldb-toolchain"
   fi


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch branch-1.2-lts updated: [branch-1.2](hdfs) do not close hdfs fs to avoid FileSystem Closed error

2023-07-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 c18ae48d9b [branch-1.2](hdfs) do not close hdfs fs to avoid FileSystem 
Closed error
c18ae48d9b is described below

commit c18ae48d9bcd021d39e0f1aa138e827e7c8b801e
Author: morningman 
AuthorDate: Thu Jul 27 16:00:13 2023 +0800

[branch-1.2](hdfs) do not close hdfs fs to avoid FileSystem Closed error
---
 be/src/io/hdfs_file_reader.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/io/hdfs_file_reader.h b/be/src/io/hdfs_file_reader.h
index 95c09d8e01..15093ba347 100644
--- a/be/src/io/hdfs_file_reader.h
+++ b/be/src/io/hdfs_file_reader.h
@@ -53,8 +53,8 @@ public:
 ~HdfsFsHandle() {
 DCHECK(_ref_cnt == 0);
 if (hdfs_fs != nullptr) {
-// Even if there is an error, the resources associated with the 
hdfsFS will be freed.
-hdfsDisconnect(hdfs_fs);
+// DO NOT call hdfsDisconnect(), or we will meet "Filesystem 
closed"
+// hdfsDisconnect(hdfs_fs);
 }
 hdfs_fs = nullptr;
 }


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] wanghuan2054 opened a new pull request, #22294: [typo](docs) fix docs,characters error

2023-07-27 Thread via GitHub


wanghuan2054 opened a new pull request, #22294:
URL: https://github.com/apache/doris/pull/22294

   ## Proposed changes
   
   Issue Number: close #xxx
   
   
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris-thirdparty] adonis0147 merged pull request #108: [chore](workflow) Increase the build space for master branch

2023-07-27 Thread via GitHub


adonis0147 merged PR #108:
URL: https://github.com/apache/doris-thirdparty/pull/108


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk commented on pull request #22094: [typo][doc]Modify word typos.

2023-07-27 Thread via GitHub


zy-kkk commented on PR #22094:
URL: https://github.com/apache/doris/pull/22094#issuecomment-1653104123

run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22094: [typo][doc]Modify word typos.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22094:
URL: https://github.com/apache/doris/pull/22094#issuecomment-1653106925

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] yiguolei commented on a diff in pull request #22152: [Chore](refactor) remove some unused code

2023-07-27 Thread via GitHub


yiguolei commented on code in PR #22152:
URL: https://github.com/apache/doris/pull/22152#discussion_r1275890764


##
be/src/exprs/runtime_filter.h:
##
@@ -368,8 +368,8 @@ class IRuntimeFilter {
 // expr index
 int _expr_order;
 // used for await or signal
-doris::Mutex _inner_mutex;

Review Comment:
   这种的别改,否则不知道是系统的还是我们的了



##
be/src/exprs/runtime_filter.h:
##
@@ -368,8 +368,8 @@ class IRuntimeFilter {
 // expr index
 int _expr_order;
 // used for await or signal
-doris::Mutex _inner_mutex;

Review Comment:
   这种的别改,否则不知道是系统的还是我们的了



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22094: [typo][doc]Modify word typos.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22094:
URL: https://github.com/apache/doris/pull/22094#issuecomment-1653107026

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] yiguolei commented on a diff in pull request #22152: [Chore](refactor) remove some unused code

2023-07-27 Thread via GitHub


yiguolei commented on code in PR #22152:
URL: https://github.com/apache/doris/pull/22152#discussion_r1275891676


##
be/src/exprs/runtime_filter.cpp:
##
@@ -1477,7 +1476,7 @@ void IRuntimeFilter::init_profile(RuntimeProfile* 
parent_profile) {
 }
 DCHECK(parent_profile != nullptr);
 _name = fmt::format("RuntimeFilter: (id = {}, type = {})", _filter_id,
-::doris::to_string(_runtime_filter_type));

Review Comment:
   我们应该全局的函数调用,都加namespace 才对,否则区分不清楚是不是对象的函数



##
be/src/exprs/runtime_filter.cpp:
##
@@ -1477,7 +1476,7 @@ void IRuntimeFilter::init_profile(RuntimeProfile* 
parent_profile) {
 }
 DCHECK(parent_profile != nullptr);
 _name = fmt::format("RuntimeFilter: (id = {}, type = {})", _filter_id,
-::doris::to_string(_runtime_filter_type));

Review Comment:
   我们应该全局的函数调用,都加namespace 才对,否则区分不清楚是不是对象的函数



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk commented on pull request #22085: [typo][doc]Modify the wrong sql description in show-data.

2023-07-27 Thread via GitHub


zy-kkk commented on PR #22085:
URL: https://github.com/apache/doris/pull/22085#issuecomment-1653109106

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] yiguolei commented on a diff in pull request #22152: [Chore](refactor) remove some unused code

2023-07-27 Thread via GitHub


yiguolei commented on code in PR #22152:
URL: https://github.com/apache/doris/pull/22152#discussion_r1275891134


##
be/src/exprs/runtime_filter.cpp:
##
@@ -1477,7 +1476,7 @@ void IRuntimeFilter::init_profile(RuntimeProfile* 
parent_profile) {
 }
 DCHECK(parent_profile != nullptr);
 _name = fmt::format("RuntimeFilter: (id = {}, type = {})", _filter_id,
-::doris::to_string(_runtime_filter_type));

Review Comment:
   这种的不要动,能感受到是全局的,否则容易乱



##
be/src/exprs/runtime_filter.cpp:
##
@@ -1477,7 +1476,7 @@ void IRuntimeFilter::init_profile(RuntimeProfile* 
parent_profile) {
 }
 DCHECK(parent_profile != nullptr);
 _name = fmt::format("RuntimeFilter: (id = {}, type = {})", _filter_id,
-::doris::to_string(_runtime_filter_type));

Review Comment:
   这种的不要动,能感受到是全局的,否则容易乱



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22085: [typo][doc]Modify the wrong sql description in show-data.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22085:
URL: https://github.com/apache/doris/pull/22085#issuecomment-1653109967

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22085: [typo][doc]Modify the wrong sql description in show-data.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22085:
URL: https://github.com/apache/doris/pull/22085#issuecomment-1653110028

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] mrhhsg opened a new pull request, #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


mrhhsg opened a new pull request, #22295:
URL: https://github.com/apache/doris/pull/22295

   ## Proposed changes
   
   Issue Number: close #xxx
   
   ```
   *** Query id: 9dc71d976d5b48e9-9a15d4a01bd6bf1e ***
   *** Aborted at 1690299297 (unix time) try "date -d @1690299297" if you are 
using GNU date ***
   *** Current BE git commitID: 6dd0ca6d0b ***
   *** SIGSEGV address not mapped to object (@0x10) received by PID 3133802 
(TID 3134087 OR 0x7f19d21cc700) from PID 16; stack trace: ***
0# doris::signal::(anonymous namespace)::FailureSignalHandler(int, 
siginfo_t*, void*) at /root/doris/be/src/common/signal_handler.h:413
1# 0x7F20E18770A7 in 
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
2# JVM_handle_linux_signal in 
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
3# 0x7F20E187002C in 
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
4# 0x7F20FB7590C0 in /lib/x86_64-linux-gnu/libc.so.6
5# doris::vectorized::Arena::clear() at 
/root/doris/be/src/vec/common/arena.h:294
6# doris::vectorized::PartitionMethodSerialized, false> 
>::serialize_keys(std::vector > const&, unsigned long) at 
/root/doris/be/src/vec/exec/vpartition_sort_node.h:137
7# void doris::vectorized::VPartitionSortNode::_pre_serialize_key_if_need, 
doris::vectorized::PartitionBlocks*, true>, 
doris::vectorized::PartitionMethodSerialized, false> > 
>(doris::vectorized::ColumnsHashing::HashMethodSerialized, 
doris::vectorized::PartitionBlocks*, true>&, 
doris::vectorized::PartitionMethodSerialized, false> >&, std::vector > const&, 
unsigned long) at /root/doris/be/src/vec/exec/vpartition_sort_node.h:463
8# void 
doris::vectorized::VPartitionSortNode::_emplace_into_hash_table(std::vector > 
const&, doris::vectorized::Block const*, int)::$_0::operator(), false> 
>&>(doris::vectorized::PartitionMethodSerialized, false> >&) const at 
/root/doris/be/src/vec/exec/vpartition_sort_node.cpp:112
9# void std::__invoke_impl > const&, doris::vectorized::Block const*, 
int)::$_0, doris::vectorized::PartitionMethodSerialized, false> 
>&>(std::__invoke_other, 
doris::vectorized::VPartitionSortNode::_emplace_into_hash_table(std::vector > 
const&, doris::vectorized::Block const*, int)::$_0&&, 
doris::vectorized::PartitionMethodSerialized, false> >&) at 
/var/local/ldb_toolchain/bin/../lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/invoke.h:61
   10# std::__invoke_result > const&, doris::vectorized::Block const*, 
int)::$_0, doris::vectorized::PartitionMethodSerialized, false> >&>::type 
std::__invoke > const&, doris::vectorized::Block const*, int)::$_0, 
doris::vectorized::PartitionMethodSerialized, false> 
>&>(doris::vectorized::VPartitionSortNode::_emplace_into_hash_table(std::vector 
> const&, doris::vectorized::Block const*, int)::$_0&&, 
doris::vectorized::PartitionMethodSerialized, false> >&) at 
/var/local/ldb_toolchain/bin/../lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/invoke.h:96
   11# 
_ZNSt8__detail9__variant17__gen_vtable_implINS0_12_Multi_arrayIPFNS0_21__deduce_visit_resultIvEEOZN5doris10vectorized18VPartitionSortNode24_emplace_into_hash_tableERKSt6vectorIPKNS6_7IColumnESaISB_EEPKNS6_5BlockEiE3$_0RSt7variantIJNS6_25PartitionMethodSerializedI9PHHashMapINS5_9StringRefEPNS6_15PartitionBlocksE11DefaultHashISO_vELb0NS6_24PartitionMethodOneNumberIh12FixedHashMapIhSQ_28FixedHashMapImplicitZeroCellIhSQ_16HashTableNoStateE28FixedHashTableCalculatedSizeISZ_E9AllocatorILb1ELb1ELb0EEELb0EEENSV_ItSW_ItSQ_SX_ItSQ_SY_E24FixedHashTableStoredSizeIS16_ES13_ELb0EEENSV_IjSN_IjSQ_9HashCRC32IjELb0EELb0EEENSV_ImSN_ImSQ_S1B_ImELb0EELb0EEENSV_INS6_7UInt128ESN_IS1I_SQ_S1B_IS1I_ELb0EELb0EEENS6_35PartitionMethodSingleNullableColumnINSV_IhNS6_24PartitionDataWithNullKeyIS14_EELb0ENS1M_INSV_ItNS1N_IS19_EELb0ENS1M_INSV_IjNS1N_IS1D_EELb0ENS1M_INSV_ImNS1N_IS1G_EELb0ENS1M_INSV_IS1I_NS1N_IS1K_EELb0ENS6_24PartitionMethodKeysFixedIS1G_Lb0EEENS23_IS1G_Lb1EEENS23_IS1K_Lb
 
0EEENS23_IS1K_Lb1EEENS23_ISN_INS6_7UInt256ESQ_S1B_IS28_ELb0EELb0EEENS23_IS2A_Lb1EEENS6_28PartitionMethodStringNoCacheI13StringHashMapISQ_S13_EEENS1M_INS2D_INS1N_IS2F_EJEEESt16integer_sequenceImJLm014__visit_invokeESK_S2L_
 at 
/var/local/ldb_toolchain/bin/../lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/variant:1013
   12# 
_ZSt10__do_visitINSt8__detail9__variant21__deduce_visit_resultIvEEZN5doris10vectorized18VPartitionSortNode24_emplace_into_hash_tableERKSt6vectorIPKNS5_7IColumnESaISA_EEPKNS5_5BlockEiE3$_0JRSt7variantIJNS5_25PartitionMethodSerializedI9PHHashMapINS4_9StringRefEPNS5_15PartitionBlocksE11DefaultHashISM_vELb0NS5_24PartitionMethodOneNumberIh12FixedHashMapIhSO_28FixedHashMapImplicitZeroCellIhSO_16HashTableNoStateE28FixedHashTableCalculatedSizeISX_E9AllocatorILb1ELb1ELb0EEELb0EEENST_ItSU_ItSO_SV_ItSO_SW_E24FixedHashTableStoredSizeIS14_ES11_ELb0EEENST_IjSL_IjSO_9HashCRC32IjELb0EELb0EEENST_ImSL_ImSO_S19_ImELb0EELb0EEENST_INS5_7

[GitHub] [doris] mrhhsg commented on pull request #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


mrhhsg commented on PR #22295:
URL: https://github.com/apache/doris/pull/22295#issuecomment-1653111468

   run buildall
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk merged pull request #21568: [fix](doc)description of check_rpc_channel api in http-actions-be

2023-07-27 Thread via GitHub


zy-kkk merged PR #21568:
URL: https://github.com/apache/doris/pull/21568


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch master updated: [fix](doc)description of check_rpc_channel api in http-actions-be (#21568)

2023-07-27 Thread zykkk
This is an automated email from the ASF dual-hosted git repository.

zykkk 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 b597eef436 [fix](doc)description of check_rpc_channel api in 
http-actions-be (#21568)
b597eef436 is described below

commit b597eef43610aef1b6f9fcfa8dae47118cadaf5a
Author: jayhua 
AuthorDate: Thu Jul 27 16:09:20 2023 +0800

[fix](doc)description of check_rpc_channel api in http-actions-be (#21568)
---
 docs/en/docs/admin-manual/http-actions/be/check-rpc-channel.md| 2 +-
 docs/zh-CN/docs/admin-manual/http-actions/be/check-rpc-channel.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en/docs/admin-manual/http-actions/be/check-rpc-channel.md 
b/docs/en/docs/admin-manual/http-actions/be/check-rpc-channel.md
index 995c841e6d..caed50e769 100644
--- a/docs/en/docs/admin-manual/http-actions/be/check-rpc-channel.md
+++ b/docs/en/docs/admin-manual/http-actions/be/check-rpc-channel.md
@@ -66,6 +66,6 @@ None
 
 
 ```
-curl http://127.0.0.1:8040/api/be_version_info/127.0.0.1//1024000
+curl http://127.0.0.1:8040/api/check_rpc_channel/127.0.0.1/8060/1024000
 ```
 
diff --git a/docs/zh-CN/docs/admin-manual/http-actions/be/check-rpc-channel.md 
b/docs/zh-CN/docs/admin-manual/http-actions/be/check-rpc-channel.md
index 7a372b4592..5a796a6a14 100644
--- a/docs/zh-CN/docs/admin-manual/http-actions/be/check-rpc-channel.md
+++ b/docs/zh-CN/docs/admin-manual/http-actions/be/check-rpc-channel.md
@@ -66,6 +66,6 @@ under the License.
 
 
 ```
-curl http://127.0.0.1:8040/api/be_version_info/127.0.0.1//1024000
+curl http://127.0.0.1:8040/api/check_rpc_channel/127.0.0.1/8060/1024000
 ```
 


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk commented on pull request #21509: [fix](doc)description of import error in broker-load-manual

2023-07-27 Thread via GitHub


zy-kkk commented on PR #21509:
URL: https://github.com/apache/doris/pull/21509#issuecomment-1653113180

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22194: [typo](doc) illustrate storage policy is not supported on merge-on-write table

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22194:
URL: https://github.com/apache/doris/pull/22194#issuecomment-1653115340

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zhangguoqiang666 commented on pull request #22287: [enhance](regresstion case)add external group mark 0727

2023-07-27 Thread via GitHub


zhangguoqiang666 commented on PR #22287:
URL: https://github.com/apache/doris/pull/22287#issuecomment-1653115750

   run buildall
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk commented on pull request #22194: [typo](doc) illustrate storage policy is not supported on merge-on-write table

2023-07-27 Thread via GitHub


zy-kkk commented on PR #22194:
URL: https://github.com/apache/doris/pull/22194#issuecomment-1653114308

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22194: [typo](doc) illustrate storage policy is not supported on merge-on-write table

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22194:
URL: https://github.com/apache/doris/pull/22194#issuecomment-1653115401

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22228: [fix](multi-catalog) complex types parsing failed, with unexpected nulls and rows

2023-07-27 Thread via GitHub


hello-stephen commented on PR #8:
URL: https://github.com/apache/doris/pull/8#issuecomment-1653115675

   (From new machine)TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 44.87 seconds
stream load tsv:  543 seconds loaded 74807831229 Bytes, about 131 
MB/s
stream load json: 20 seconds loaded 2358488459 Bytes, about 112 MB/s
stream load orc:  64 seconds loaded 1101869774 Bytes, about 16 MB/s
stream load parquet:  31 seconds loaded 861443392 Bytes, about 26 
MB/s
insert into select:  29.6 seconds inserted 1000 Rows, about 
337K ops/s
storage size: 17165892785 Bytes


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22295:
URL: https://github.com/apache/doris/pull/22295#issuecomment-1653120630

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris-spark-connector] gnehil opened a new pull request, #122: [feature] support two phase commit

2023-07-27 Thread via GitHub


gnehil opened a new pull request, #122:
URL: https://github.com/apache/doris-spark-connector/pull/122

   # Proposed changes
   
   Spark doris connector support two-phase commit.
   
   Set the option `doris.sink.enable-2pc` to `true` to enable two-phase commit 
for stream load.
   
   After enabled, the behavior is as follows:
   Pre-submit stream load requests for each batch load, and then
   1. When the job succeeds, all pre-committed transactions will be committed.
   2. When the job fails, all pre-committed transactions will be aborted.
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: (Yes/No/I Don't know)
   4. Has unit tests been added: (Yes/No/No Need)
   5. Has document been added or modified: (Yes/No/No Need)
   6. Does it need to update dependencies: (Yes/No)
   7. Are there any changes that cannot be rolled back: (Yes/No)
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22084: [typo][doc]Modify the incorrect sql description in show-partition-id.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22084:
URL: https://github.com/apache/doris/pull/22084#issuecomment-1653123274

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22084: [typo][doc]Modify the incorrect sql description in show-partition-id.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22084:
URL: https://github.com/apache/doris/pull/22084#issuecomment-1653123384

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22279: [Fix](EsCatalog) fix be core when query the table of Es catalog with null fields

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22279:
URL: https://github.com/apache/doris/pull/22279#issuecomment-1653124380

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Tanya-W commented on pull request #22255: [opt](inverted index) add session variable enable_inverted_index_query to control whether query with inverted index

2023-07-27 Thread via GitHub


Tanya-W commented on PR #22255:
URL: https://github.com/apache/doris/pull/22255#issuecomment-1653125410

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] liuxinzero07 commented on pull request #22097: modify docs with configure kerberos

2023-07-27 Thread via GitHub


liuxinzero07 commented on PR #22097:
URL: https://github.com/apache/doris/pull/22097#issuecomment-1653126642

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22227: [enhancement](nereids) Scale replica of stats table to 3 when it's possible

2023-07-27 Thread via GitHub


hello-stephen commented on PR #7:
URL: https://github.com/apache/doris/pull/7#issuecomment-1653126615

   (From new machine)TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 45.76 seconds
stream load tsv:  532 seconds loaded 74807831229 Bytes, about 134 
MB/s
stream load json: 20 seconds loaded 2358488459 Bytes, about 112 MB/s
stream load orc:  64 seconds loaded 1101869774 Bytes, about 16 MB/s
stream load parquet:  30 seconds loaded 861443392 Bytes, about 27 
MB/s
insert into select:  29.2 seconds inserted 1000 Rows, about 
342K ops/s
storage size: 17163496950 Bytes


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] yiguolei commented on a diff in pull request #22152: [Chore](refactor) remove some unused code

2023-07-27 Thread via GitHub


yiguolei commented on code in PR #22152:
URL: https://github.com/apache/doris/pull/22152#discussion_r1275908493


##
be/src/exprs/runtime_filter.cpp:
##
@@ -1490,8 +1489,7 @@ void IRuntimeFilter::init_profile(RuntimeProfile* 
parent_profile) {
 
 void IRuntimeFilter::update_runtime_filter_type_to_profile() {
 if (_profile != nullptr) {
-_profile->add_info_string("RealRuntimeFilterType",
-  
::doris::to_string(_wrapper->get_real_type()));

Review Comment:
   and here



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #21954: [typo](docs) Replace invalid mysql-connector-java download package.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #21954:
URL: https://github.com/apache/doris/pull/21954#issuecomment-1653133229

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #21954: [typo](docs) Replace invalid mysql-connector-java download package.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #21954:
URL: https://github.com/apache/doris/pull/21954#issuecomment-1653133312

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk commented on pull request #21954: [typo](docs) Replace invalid mysql-connector-java download package.

2023-07-27 Thread via GitHub


zy-kkk commented on PR #21954:
URL: https://github.com/apache/doris/pull/21954#issuecomment-1653133910

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Jibing-Li commented on pull request #22224: [Fix](multi catalog statistics)Improve external table statistics collection.

2023-07-27 Thread via GitHub


Jibing-Li commented on PR #4:
URL: https://github.com/apache/doris/pull/4#issuecomment-1653134501

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] mrhhsg commented on pull request #22191: [fix](sort) VSortedRunMerger does not return any rows with a large offset value

2023-07-27 Thread via GitHub


mrhhsg commented on PR #22191:
URL: https://github.com/apache/doris/pull/22191#issuecomment-1653134911

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22293: [enhancement](binlog) CreateTable inherit db binlog && Add some checks

2023-07-27 Thread via GitHub


hello-stephen commented on PR #22293:
URL: https://github.com/apache/doris/pull/22293#issuecomment-1653135306

   (From new machine)TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 45.09 seconds
stream load tsv:  510 seconds loaded 74807831229 Bytes, about 139 
MB/s
stream load json: 20 seconds loaded 2358488459 Bytes, about 112 MB/s
stream load orc:  65 seconds loaded 1101869774 Bytes, about 16 MB/s
stream load parquet:  30 seconds loaded 861443392 Bytes, about 27 
MB/s
insert into select:  29.5 seconds inserted 1000 Rows, about 
338K ops/s
storage size: 17167345805 Bytes


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] mrhhsg commented on pull request #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


mrhhsg commented on PR #22295:
URL: https://github.com/apache/doris/pull/22295#issuecomment-1653135363

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] morrySnow commented on pull request #22284: [opt](Nereids) add double signature back for round like function

2023-07-27 Thread via GitHub


morrySnow commented on PR #22284:
URL: https://github.com/apache/doris/pull/22284#issuecomment-1653138870

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] XieJiann commented on pull request #22265: [fix](Nereids) fix ends calculation when there are constant project

2023-07-27 Thread via GitHub


XieJiann commented on PR #22265:
URL: https://github.com/apache/doris/pull/22265#issuecomment-1653140361

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] yiguolei commented on a diff in pull request #22152: [Chore](refactor) remove some unused code

2023-07-27 Thread via GitHub


yiguolei commented on code in PR #22152:
URL: https://github.com/apache/doris/pull/22152#discussion_r1275919837


##
be/src/vec/exprs/vexpr.h:
##
@@ -81,8 +81,6 @@ class VExpr {
 VExpr() = default;
 virtual ~VExpr() = default;
 
-virtual VExprSPtr clone() const = 0;

Review Comment:
   This method is useless



-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] ByteYue opened a new pull request, #22296: [enhance](S3FIleWriter) Add md5 check for small file not suitable for multi part upload

2023-07-27 Thread via GitHub


ByteYue opened a new pull request, #22296:
URL: https://github.com/apache/doris/pull/22296

   ## Proposed changes
   
   Issue Number: close #xxx
   Add md5 check for small file which is not suitable for multi part upload.
   Plus this pr removes the wait group implementation which might cost too 
much, and adapt it to one lightweight implementation inside brpc.
   
   
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22292: [improvement](variable) add annotations for variables

2023-07-27 Thread via GitHub


hello-stephen commented on PR #22292:
URL: https://github.com/apache/doris/pull/22292#issuecomment-1653145608

   (From new machine)TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 45.4 seconds
stream load tsv:  505 seconds loaded 74807831229 Bytes, about 141 
MB/s
stream load json: 20 seconds loaded 2358488459 Bytes, about 112 MB/s
stream load orc:  64 seconds loaded 1101869774 Bytes, about 16 MB/s
stream load parquet:  31 seconds loaded 861443392 Bytes, about 26 
MB/s
insert into select:  29.4 seconds inserted 1000 Rows, about 
340K ops/s
storage size: 17161386077 Bytes


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22191: [fix](sort) VSortedRunMerger does not return any rows with a large offset value

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22191:
URL: https://github.com/apache/doris/pull/22191#issuecomment-1653146098

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22227: [enhancement](nereids) Scale replica of stats table to 3 when it's possible

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #7:
URL: https://github.com/apache/doris/pull/7#issuecomment-1653149143

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Tanya-W opened a new pull request, #22297: [opt](inverted index) add more check for create inverted index

2023-07-27 Thread via GitHub


Tanya-W opened a new pull request, #22297:
URL: https://github.com/apache/doris/pull/22297

   ## Proposed changes
   
   Issue Number: close #xxx
   
   
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22296: [enhance](S3FIleWriter) Add md5 check for small file not suitable for multi part upload

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22296:
URL: https://github.com/apache/doris/pull/22296#issuecomment-1653159648

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] amorynan opened a new pull request, #22298: [FIX](Jsonb)fix extract path with [*]

2023-07-27 Thread via GitHub


amorynan opened a new pull request, #22298:
URL: https://github.com/apache/doris/pull/22298

   ## Proposed changes
   
   Issue Number: close #xxx
   now we not support extract path using [*] 
   
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] mrhhsg commented on pull request #22191: [fix](sort) VSortedRunMerger does not return any rows with a large offset value

2023-07-27 Thread via GitHub


mrhhsg commented on PR #22191:
URL: https://github.com/apache/doris/pull/22191#issuecomment-1653165770

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


hello-stephen commented on PR #22295:
URL: https://github.com/apache/doris/pull/22295#issuecomment-1653165493

   (From new machine)TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 44.84 seconds
stream load tsv:  509 seconds loaded 74807831229 Bytes, about 140 
MB/s
stream load json: 20 seconds loaded 2358488459 Bytes, about 112 MB/s
stream load orc:  65 seconds loaded 1101869774 Bytes, about 16 MB/s
stream load parquet:  32 seconds loaded 861443392 Bytes, about 25 
MB/s
insert into select:  29.2 seconds inserted 1000 Rows, about 
342K ops/s
storage size: 17159489621 Bytes


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22295:
URL: https://github.com/apache/doris/pull/22295#issuecomment-1653167643

   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 GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22295: [fix](vec) Arena was not initialized in PartitionMethodSerialized

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22295:
URL: https://github.com/apache/doris/pull/22295#issuecomment-1653167727

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Tanya-W commented on pull request #22297: [opt](inverted index) add more check for create inverted index

2023-07-27 Thread via GitHub


Tanya-W commented on PR #22297:
URL: https://github.com/apache/doris/pull/22297#issuecomment-1653170299

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22298: [FIX](Jsonb)fix extract path with [*]

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22298:
URL: https://github.com/apache/doris/pull/22298#issuecomment-1653170692

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22224: [Fix](multi catalog statistics)Improve external table statistics collection.

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #4:
URL: https://github.com/apache/doris/pull/4#issuecomment-1653170936

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] Tanya-W commented on pull request #22255: [opt](inverted index) add session variable enable_inverted_index_query to control whether query with inverted index

2023-07-27 Thread via GitHub


Tanya-W commented on PR #22255:
URL: https://github.com/apache/doris/pull/22255#issuecomment-1653172611

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22191: [fix](sort) VSortedRunMerger does not return any rows with a large offset value

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22191:
URL: https://github.com/apache/doris/pull/22191#issuecomment-1653174173

   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 above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk merged pull request #22252: [Docs](community) Add Join Community Files of EN & CN Verison

2023-07-27 Thread via GitHub


zy-kkk merged PR #22252:
URL: https://github.com/apache/doris/pull/22252


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[doris] branch master updated (b597eef436 -> 94d2ba5ba0)

2023-07-27 Thread zykkk
This is an automated email from the ASF dual-hosted git repository.

zykkk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


from b597eef436 [fix](doc)description of check_rpc_channel api in 
http-actions-be (#21568)
 add 94d2ba5ba0 [Docs](community) Add Join Community Files of EN & CN 
Verison (#22252)

No new revisions were added by this update.

Summary of changes:
 docs/en/community/join-community.md| 110 +
 docs/sidebarsCommunity.json|   1 +
 docs/zh-CN/community/join-community.md | 102 ++
 3 files changed, 213 insertions(+)
 create mode 100644 docs/en/community/join-community.md
 create mode 100644 docs/zh-CN/community/join-community.md


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] hello-stephen commented on pull request #22255: [opt](inverted index) add session variable enable_inverted_index_query to control whether query with inverted index

2023-07-27 Thread via GitHub


hello-stephen commented on PR #22255:
URL: https://github.com/apache/doris/pull/22255#issuecomment-1653175773

   (From new machine)TeamCity pipeline, clickbench performance test result:
the sum of best hot time: 45.66 seconds
stream load tsv:  538 seconds loaded 74807831229 Bytes, about 132 
MB/s
stream load json: 20 seconds loaded 2358488459 Bytes, about 112 MB/s
stream load orc:  64 seconds loaded 1101869774 Bytes, about 16 MB/s
stream load parquet:  30 seconds loaded 861443392 Bytes, about 27 
MB/s
insert into select:  29.9 seconds inserted 1000 Rows, about 
334K ops/s
storage size: 17166884671 Bytes


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] github-actions[bot] commented on pull request #22297: [opt](inverted index) add more check for create inverted index

2023-07-27 Thread via GitHub


github-actions[bot] commented on PR #22297:
URL: https://github.com/apache/doris/pull/22297#issuecomment-1653177846

   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
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] ixzc commented on pull request #21967: [typo][doc]Delete the extra "\".

2023-07-27 Thread via GitHub


ixzc commented on PR #21967:
URL: https://github.com/apache/doris/pull/21967#issuecomment-1653178864

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] ixzc commented on pull request #21987: [typo][doc]Modify the error description for creating the materialized view syntax.

2023-07-27 Thread via GitHub


ixzc commented on PR #21987:
URL: https://github.com/apache/doris/pull/21987#issuecomment-1653180053

   run buildall


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



[GitHub] [doris] zy-kkk merged pull request #22251: [fix](jdbc_catalog) fix int and bigint in mysql view when use doris catalog

2023-07-27 Thread via GitHub


zy-kkk merged PR #22251:
URL: https://github.com/apache/doris/pull/22251


-- 
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.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org



  1   2   3   4   5   6   >