[opt](Nereids) let column dist info check msg same with legacy planner (#25925)

This commit is contained in:
morrySnow
2023-10-26 11:35:24 +08:00
committed by GitHub
parent 005a36322e
commit 855956e503

View File

@ -71,7 +71,7 @@ public class DistributionDescriptor {
}
cols.forEach(c -> {
if (!columnMap.containsKey(c)) {
throw new AnalysisException(String.format("column %s is not found in distribution desc", c));
throw new AnalysisException(String.format("Distribution column(%s) doesn't exist", c));
}
});
} else {