Uh oh!
There was an error while loading. Please reload this page.
[fix](planner) remove input slot for aggregate slot which is not materialized - #32092
Merged
Conversation
…rialized Signed-off-by: nextdreamblue <zxw520blue1@163.com>
doris-robot
commented
Mar 12, 2024
Thank you for your contribution to Apache Doris. |
nextdreamblue
commented
Mar 12, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Mar 12, 2024
TPC-H: Total hot run time: 36567 ms |
doris-robot
commented
Mar 12, 2024
TPC-DS: Total hot run time: 186803 ms |
doris-robot
commented
Mar 12, 2024
ClickBench: Total hot run time: 30.81 s |
doris-robot
commented
Mar 12, 2024
Load test result on machine: 'aliyun_ecs.c7a.8xlarge_32C64G' |
nextdreamblue
commented
Mar 12, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Mar 12, 2024
TPC-H: Total hot run time: 36650 ms |
doris-robot
commented
Mar 12, 2024
TPC-DS: Total hot run time: 187409 ms |
doris-robot
commented
Mar 12, 2024
ClickBench: Total hot run time: 30.44 s |
doris-robot
commented
Mar 12, 2024
Load test result on machine: 'aliyun_ecs.c7a.8xlarge_32C64G' |
starocean999
approved these changes
Mar 12, 2024
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
morrySnow
approved these changes
Mar 12, 2024
nextdreamblue added a commit
to nextdreamblue/doris
that referenced
this pull request
Mar 12, 2024
…rialized (apache#32092) introduced by apache#26886 run this sql: SELECT caseId FROM ( SELECT caseId, count(judgementDateId) FROM ( SELECT abs(caseId) AS caseId, id as judgementDateId FROM dr_user_test_t2 ) AGG_RESULT GROUP BY caseId ) TOTAL order by 1; will get: ERROR 1105 (HY000): errCode = 2, detailMessage = (172.17.0.1)[INTERNAL_ERROR]couldn't resolve slot descriptor 1, desc: tuples: Tuple(id=5 slots=[Slot(id=10 type=DOUBLE col=-1, colname=, nullable=1), Slot(id=11 type=VARCHAR col=-1, colname=id, nullable=1)] has_varlen_slots=1) Tuple(id=4 slots=[Slot(id=8 type=DOUBLE col=-1, colname=, nullable=1)] has_varlen_slots=0) Tuple(id=2 slots=[Slot(id=4 type=DOUBLE col=-1, colname=caseId, nullable=1)] has_varlen_slots=0) Tuple(id=0 slots=[Slot(id=0 type=VARCHAR col=-1, colname=caseId, nu
yiguolei pushed a commit
that referenced
this pull request
Mar 12, 2024
…rialized (#32092) introduced by #26886 run this sql: SELECT caseId FROM ( SELECT caseId, count(judgementDateId) FROM ( SELECT abs(caseId) AS caseId, id as judgementDateId FROM dr_user_test_t2 ) AGG_RESULT GROUP BY caseId ) TOTAL order by 1; will get: ERROR 1105 (HY000): errCode = 2, detailMessage = (172.17.0.1)[INTERNAL_ERROR]couldn't resolve slot descriptor 1, desc: tuples: Tuple(id=5 slots=[Slot(id=10 type=DOUBLE col=-1, colname=, nullable=1), Slot(id=11 type=VARCHAR col=-1, colname=id, nullable=1)] has_varlen_slots=1) Tuple(id=4 slots=[Slot(id=8 type=DOUBLE col=-1, colname=, nullable=1)] has_varlen_slots=0) Tuple(id=2 slots=[Slot(id=4 type=DOUBLE col=-1, colname=caseId, nullable=1)] has_varlen_slots=0) Tuple(id=0 slots=[Slot(id=0 type=VARCHAR col=-1, colname=caseId, nu
morrySnow pushed a commit
that referenced
this pull request
Mar 12, 2024
…rialized (#32092) (#32133) cherry-pick from master #27096 introduced by #26886 run this sql: SELECT caseId FROM ( SELECT caseId, count(judgementDateId) FROM ( SELECT abs(caseId) AS caseId, id as judgementDateId FROM dr_user_test_t2 ) AGG_RESULT GROUP BY caseId ) TOTAL order by 1; will get: ERROR 1105 (HY000): errCode = 2, detailMessage = (172.17.0.1)[INTERNAL_ERROR]couldn't resolve slot descriptor 1, desc: tuples: Tuple(id=5 slots=[Slot(id=10 type=DOUBLE col=-1, colname=, nullable=1), Slot(id=11 type=VARCHAR col=-1, colname=id, nullable=1)] has_varlen_slots=1) Tuple(id=4 slots=[Slot(id=8 type=DOUBLE col=-1, colname=, nullable=1)] has_varlen_slots=0) Tuple(id=2 slots=[Slot(id=4 type=DOUBLE col=-1, colname=caseId, nullable=1)] has_varlen_slots=0) Tuple(id=0 slots=[Slot(id=0 type=VARCHAR col=-1, colname=caseId, nu
mongo360 pushed a commit
to mongo360/doris
that referenced
this pull request
Aug 16, 2024
…rialized (apache#32092) (apache#32133) cherry-pick from master apache#27096 introduced by apache#26886 run this sql: SELECT caseId FROM ( SELECT caseId, count(judgementDateId) FROM ( SELECT abs(caseId) AS caseId, id as judgementDateId FROM dr_user_test_t2 ) AGG_RESULT GROUP BY caseId ) TOTAL order by 1; will get: ERROR 1105 (HY000): errCode = 2, detailMessage = (172.17.0.1)[INTERNAL_ERROR]couldn't resolve slot descriptor 1, desc: tuples: Tuple(id=5 slots=[Slot(id=10 type=DOUBLE col=-1, colname=, nullable=1), Slot(id=11 type=VARCHAR col=-1, colname=id, nullable=1)] has_varlen_slots=1) Tuple(id=4 slots=[Slot(id=8 type=DOUBLE col=-1, colname=, nullable=1)] has_varlen_slots=0) Tuple(id=2 slots=[Slot(id=4 type=DOUBLE col=-1, colname=caseId, nullable=1)] has_varlen_slots=0) Tuple(id=0 slots=[Slot(id=0 type=VARCHAR col=-1, colname=caseId, nu
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
…rialized (apache#32092) introduced by apache#26886 run this sql: SELECT caseId FROM ( SELECT caseId, count(judgementDateId) FROM ( SELECT abs(caseId) AS caseId, id as judgementDateId FROM dr_user_test_t2 ) AGG_RESULT GROUP BY caseId ) TOTAL order by 1; will get: ERROR 1105 (HY000): errCode = 2, detailMessage = (172.17.0.1)[INTERNAL_ERROR]couldn't resolve slot descriptor 1, desc: tuples: Tuple(id=5 slots=[Slot(id=10 type=DOUBLE col=-1, colname=, nullable=1), Slot(id=11 type=VARCHAR col=-1, colname=id, nullable=1)] has_varlen_slots=1) Tuple(id=4 slots=[Slot(id=8 type=DOUBLE col=-1, colname=, nullable=1)] has_varlen_slots=0) Tuple(id=2 slots=[Slot(id=4 type=DOUBLE col=-1, colname=caseId, nullable=1)] has_varlen_slots=0) Tuple(id=0 slots=[Slot(id=0 type=VARCHAR col=-1, colname=caseId, nu
This file contains hidden or 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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposed changes
after #26886,
run this sql
will get
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...