Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

planner: show cast type in EXPLAIN #14942

Merged
merged 7 commits into from
Feb 26, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into showCastTypeInExplain
  • Loading branch information
gauss1314 authored Feb 25, 2020
commit 06e97aad19e64acdaf4bc88c4d470700dd911fa3
2 changes: 1 addition & 1 deletion cmd/explaintest/r/topn_pushdown.result
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ explain select * from ((select 4 as a) union all (select 33 as a)) tmp order by
id count task operator info
TopN_17 1.00 root Column#3:desc, offset:0, count:1
└─Union_21 2.00 root
├─Projection_22 1.00 root cast(4, bigint(2) BINARY)->Column#3
├─Projection_22 1.00 root 4->Column#3
│ └─TableDual_23 1.00 root rows:1
└─Projection_24 1.00 root 33->Column#3
└─TableDual_25 1.00 root rows:1
You are viewing a condensed version of this merge commit. You can view the full changes here.