This is an automated email from the ASF dual-hosted git repository.

diwu 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 b560e973a57 [fix](schemachange) Fixed the issue of incorrect log 
information when distribution columns are compared inconsistently (#27013)
b560e973a57 is described below

commit b560e973a57a790a5c8da1c0deb00bcc05e1ecc1
Author: gnehil <[email protected]>
AuthorDate: Tue Jan 9 17:21:24 2024 +0800

    [fix](schemachange) Fixed the issue of incorrect log information when 
distribution columns are compared inconsistently (#27013)
---
 fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java 
b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
index 613ee63abd6..3b3f5939fd4 100755
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
@@ -4909,7 +4909,7 @@ public class Env {
                     if 
(!hashDistributionInfo.sameDistributionColumns((HashDistributionInfo) 
defaultDistributionInfo)) {
                         throw new DdlException("Cannot assign hash 
distribution with different distribution cols. "
                                 + "new is: " + 
hashDistributionInfo.getDistributionColumns() + " default is: "
-                                + ((HashDistributionInfo) 
distributionInfo).getDistributionColumns());
+                                + ((HashDistributionInfo) 
defaultDistributionInfo).getDistributionColumns());
                     }
                 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to