-
Notifications
You must be signed in to change notification settings - Fork 4.8k
HIVE-28280: SemanticException when querying VIEW with DISTINCT clause #6103
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
base: master
Are you sure you want to change the base?
Changes from all commits
51e8071
ba7294b
87b99fc
e6d6d3e
7090c79
74cfeb3
dee4838
8836426
ff6e6bd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| set hive.security.authorization.enabled=true; | ||
| create table t1 (username string, id int); | ||
|
|
||
| create view vw_t0 as select distinct username from t1 group by username; | ||
| explain cbo select * from vw_t0; | ||
|
|
||
| create view vw_t1 as select distinct username from t1 order by username desc limit 5; | ||
| explain cbo select * from vw_t1; | ||
|
|
||
| create view vw_t2 as | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does vw_t2 and vw_t3 have a different operator on top of the view? If not then we are not really adding test coverage so we should drop those test cases. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed |
||
| select username from (select username, id from t1 where id > 10 limit 1) x where username > 'a' order by id; | ||
| explain cbo select * from vw_t2; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| PREHOOK: query: create table t1 (username string, id int) | ||
| PREHOOK: type: CREATETABLE | ||
| PREHOOK: Output: database:default | ||
| PREHOOK: Output: default@t1 | ||
| POSTHOOK: query: create table t1 (username string, id int) | ||
| POSTHOOK: type: CREATETABLE | ||
| POSTHOOK: Output: database:default | ||
| POSTHOOK: Output: default@t1 | ||
| PREHOOK: query: create view vw_t0 as select distinct username from t1 group by username | ||
| PREHOOK: type: CREATEVIEW | ||
| PREHOOK: Input: default@t1 | ||
| PREHOOK: Output: database:default | ||
| PREHOOK: Output: default@vw_t0 | ||
| POSTHOOK: query: create view vw_t0 as select distinct username from t1 group by username | ||
| POSTHOOK: type: CREATEVIEW | ||
| POSTHOOK: Input: default@t1 | ||
| POSTHOOK: Output: database:default | ||
| POSTHOOK: Output: default@vw_t0 | ||
| POSTHOOK: Lineage: vw_t0.username SIMPLE [(t1)t1.FieldSchema(name:username, type:string, comment:null), ] | ||
| PREHOOK: query: explain cbo select * from vw_t0 | ||
| PREHOOK: type: QUERY | ||
| PREHOOK: Input: default@t1 | ||
| PREHOOK: Input: default@vw_t0 | ||
| #### A masked pattern was here #### | ||
| POSTHOOK: query: explain cbo select * from vw_t0 | ||
| POSTHOOK: type: QUERY | ||
| POSTHOOK: Input: default@t1 | ||
| POSTHOOK: Input: default@vw_t0 | ||
| #### A masked pattern was here #### | ||
| CBO PLAN: | ||
| HiveAggregate(group=[{0}]) | ||
| HiveTableScan(table=[[default, t1]], table:alias=[t1]) | ||
|
|
||
| PREHOOK: query: create view vw_t1 as select distinct username from t1 order by username desc limit 5 | ||
| PREHOOK: type: CREATEVIEW | ||
| PREHOOK: Input: default@t1 | ||
| PREHOOK: Output: database:default | ||
| PREHOOK: Output: default@vw_t1 | ||
| POSTHOOK: query: create view vw_t1 as select distinct username from t1 order by username desc limit 5 | ||
| POSTHOOK: type: CREATEVIEW | ||
| POSTHOOK: Input: default@t1 | ||
| POSTHOOK: Output: database:default | ||
| POSTHOOK: Output: default@vw_t1 | ||
| POSTHOOK: Lineage: vw_t1.username SIMPLE [(t1)t1.FieldSchema(name:username, type:string, comment:null), ] | ||
| PREHOOK: query: explain cbo select * from vw_t1 | ||
| PREHOOK: type: QUERY | ||
| PREHOOK: Input: default@t1 | ||
| PREHOOK: Input: default@vw_t1 | ||
| #### A masked pattern was here #### | ||
| POSTHOOK: query: explain cbo select * from vw_t1 | ||
| POSTHOOK: type: QUERY | ||
| POSTHOOK: Input: default@t1 | ||
| POSTHOOK: Input: default@vw_t1 | ||
| #### A masked pattern was here #### | ||
| CBO PLAN: | ||
| HiveSortLimit(sort0=[$0], dir0=[DESC], fetch=[5]) | ||
| HiveProject(username=[$0]) | ||
| HiveAggregate(group=[{0}]) | ||
| HiveTableScan(table=[[default, t1]], table:alias=[t1]) | ||
|
|
||
| PREHOOK: query: create view vw_t2 as | ||
| select username from (select username, id from t1 where id > 10 limit 1) x where username > 'a' order by id | ||
| PREHOOK: type: CREATEVIEW | ||
| PREHOOK: Input: default@t1 | ||
| PREHOOK: Output: database:default | ||
| PREHOOK: Output: default@vw_t2 | ||
| POSTHOOK: query: create view vw_t2 as | ||
| select username from (select username, id from t1 where id > 10 limit 1) x where username > 'a' order by id | ||
| POSTHOOK: type: CREATEVIEW | ||
| POSTHOOK: Input: default@t1 | ||
| POSTHOOK: Output: database:default | ||
| POSTHOOK: Output: default@vw_t2 | ||
| POSTHOOK: Lineage: vw_t2.username SIMPLE [(t1)t1.FieldSchema(name:username, type:string, comment:null), ] | ||
| PREHOOK: query: explain cbo select * from vw_t2 | ||
| PREHOOK: type: QUERY | ||
| PREHOOK: Input: default@t1 | ||
| PREHOOK: Input: default@vw_t2 | ||
| #### A masked pattern was here #### | ||
| POSTHOOK: query: explain cbo select * from vw_t2 | ||
| POSTHOOK: type: QUERY | ||
| POSTHOOK: Input: default@t1 | ||
| POSTHOOK: Input: default@vw_t2 | ||
| #### A masked pattern was here #### | ||
| CBO PLAN: | ||
| HiveFilter(condition=[>($0, _UTF-16LE'a')]) | ||
| HiveProject(username=[$0]) | ||
| HiveSortLimit(fetch=[1]) | ||
| HiveProject(username=[$0]) | ||
| HiveFilter(condition=[>($1, 10)]) | ||
| HiveTableScan(table=[[default, t1]], table:alias=[t1]) | ||
|
Comment on lines
+84
to
+90
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't see the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems to be by design, and can be controlled by: |
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.