-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[enhancement](nereids)optimized aggregate node's error msg (#38122)
## Proposed changes ``` create table t1 ( c1 bigint, c2 bigint ) DISTRIBUTED BY HASH(c1) BUCKETS 3 PROPERTIES ("replication_num" = "1"); ``` sql `select * from t1 group by 1;` the error msg before: ERROR 1105 (HY000): errCode = 2, detailMessage = Invalid call to toSlot on unbound object after: ERROR 1105 (HY000): errCode = 2, detailMessage = c2 not in aggregate's output Issue Number: close #xxx <!--Describe your changes.-->
- Loading branch information
1 parent
5b9e491
commit 0cc1908
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters