[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2022-10-21 Thread Stamatis Zampetakis (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stamatis Zampetakis updated HIVE-18872:
---
Fix Version/s: (was: 3.2.0)

I cleared the fixVersion field since this ticket is not resolved. Please review 
this ticket and if the fix is already committed to a specific version please 
set the version accordingly and mark the ticket as RESOLVED.

According to the JIRA guidelines 
(https://cwiki.apache.org/confluence/display/Hive/HowToContribute) the 
fixVersion should be set only when the issue is resolved/closed.

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this, storage 
> handler relying on projections for building query while generating input 
> splits are not working.
> here, in below case, due to bug we will be pushing ID2 for both the aliases 
> "A" and "B"  during addSplitsForGroup instead of pushing DB for alias "A" and 
> ID2 only for alias "B".
> SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
> WHERE A.ID=10;



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-06-27 Thread Vineet Garg (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vineet Garg updated HIVE-18872:
---
Fix Version/s: (was: 3.1.0)
   3.2.0

Deferring this to 3.2.0 since the branch for 3.1.0 has been cut off.

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.2.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this, storage 
> handler relying on projections for building query while generating input 
> splits are not working.
> here, in below case, due to bug we will be pushing ID2 for both the aliases 
> "A" and "B"  during addSplitsForGroup instead of pushing DB for alias "A" and 
> ID2 only for alias "B".
> SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
> WHERE A.ID=10;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-09 Thread Vineet Garg (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vineet Garg updated HIVE-18872:
---
Fix Version/s: (was: 3.0.0)
   3.1.0

Deferring this to 3.1.0 since the branch for 3.0.0 has been cut off. Please 
update the JIRA if you would like to get your patch in 3.0.0.

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.1.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this, storage 
> handler relying on projections for building query while generating input 
> splits are not working.
> here, in below case, due to bug we will be pushing ID2 for both the aliases 
> "A" and "B"  during addSplitsForGroup instead of pushing DB for alias "A" and 
> ID2 only for alias "B".
> SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
> WHERE A.ID=10;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-02 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Description: 
Projections are not pushed down properly during getSplit() when the query 
involves multiple tables although they are getting properly pushed during 
getRecordReader when the task is working on the split. Due to this, storage 
handler relying on projections for building query while generating input splits 
are not working.

here, in below case, due to bug we will be pushing ID2 for both the aliases "A" 
and "B"  during addSplitsForGroup instead of pushing DB for alias "A" and ID2 
only for alias "B".
SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
WHERE A.ID=10;

  was:
Projections are not pushed down properly during getSplit() when the query 
involves multiple tables although they are getting properly pushed during 
getRecordReader when the task is working on the split. Due to this, storage 
handler relying on projections for building query while generating input splits 
are not working.

here, in below case, due to bug we will be pushing ID2 for both the aliases "A" 
and "B" to during addSplitsForGroup instead of pushing DB for alias "A" and ID2 
only for alias "B".
SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
WHERE A.ID=10;


> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this, storage 
> handler relying on projections for building query while generating input 
> splits are not working.
> here, in below case, due to bug we will be pushing ID2 for both the aliases 
> "A" and "B"  during addSplitsForGroup instead of pushing DB for alias "A" and 
> ID2 only for alias "B".
> SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
> WHERE A.ID=10;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-02 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Description: 
Projections are not pushed down properly during getSplit() when the query 
involves multiple tables although they are getting properly pushed during 
getRecordReader when the task is working on the split. Due to this, storage 
handler relying on projections for building query while generating input splits 
are not working.

here, in below case, due to bug we will be pushing ID2 for both the aliases "A" 
and "B" to during addSplitsForGroup instead of pushing DB for alias "A" and ID2 
only for alias "B".
SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
WHERE A.ID=10;

  was:
Projections are not pushed down properly during getSplit() when the query 
involves multiple tables although they are getting properly pushed during 
getRecordReader when the task is working on the split. Due to this , storage 
handler relying on projections for building query while generating input splits 
are not working.

here, in below case, we will be pushing ID2 for both the aliases "A" and "B" to 
during addSplitsForGroup instead of pushing DB for alias "A" and ID2 only for 
alias "B".
SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
WHERE A.ID=10;


> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this, storage 
> handler relying on projections for building query while generating input 
> splits are not working.
> here, in below case, due to bug we will be pushing ID2 for both the aliases 
> "A" and "B" to during addSplitsForGroup instead of pushing DB for alias "A" 
> and ID2 only for alias "B".
> SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
> WHERE A.ID=10;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-02 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Description: 
Projections are not pushed down properly during getSplit() when the query 
involves multiple tables although they are getting properly pushed during 
getRecordReader when the task is working on the split. Due to this , storage 
handler relying on projections for building query while generating input splits 
are not working.

here, in below case, we will be pushing ID2 for both the aliases "A" and "B" to 
during addSplitsForGroup instead of pushing DB for alias "A" and ID2 only for 
alias "B".
SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
WHERE A.ID=10;

  was:Projections are not pushed down properly during getSplit() when the query 
involves multiple tables although they are getting properly pushed during 
getRecordReader when the task is working on the split. Due to this , storage 
handler relying on projections for building query while generating input splits 
are not working.


> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this , storage 
> handler relying on projections for building query while generating input 
> splits are not working.
> here, in below case, we will be pushing ID2 for both the aliases "A" and "B" 
> to during addSplitsForGroup instead of pushing DB for alias "A" and ID2 only 
> for alias "B".
> SELECT A.ID, a.db, B.ID2 from joinTable3 A join joinTable4 B on A.ID = B.ID 
> WHERE A.ID=10;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-02 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Description: Projections are not pushed down properly during getSplit() 
when the query involves multiple tables although they are getting properly 
pushed during getRecordReader when the task is working on the split. Due to 
this , storage handler relying on projections for building query while 
generating input splits are not working.  (was: Projections are not pushed down 
properly during getSplit() when the query involves multiple table although they 
are getting properly pushed during getRecordReader when the task is working on 
the split.)

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple tables although they are getting properly pushed during 
> getRecordReader when the task is working on the split. Due to this , storage 
> handler relying on projections for building query while generating input 
> splits are not working.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-02 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Description: Projections are not pushed down properly during getSplit() 
when query involves multiple table although they are getting properly pushed 
during getRecordReader when the task is working on the script.

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when query 
> involves multiple table although they are getting properly pushed during 
> getRecordReader when the task is working on the script.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-04-02 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Description: Projections are not pushed down properly during getSplit() 
when the query involves multiple table although they are getting properly 
pushed during getRecordReader when the task is working on the split.  (was: 
Projections are not pushed down properly during getSplit() when query involves 
multiple table although they are getting properly pushed during getRecordReader 
when the task is working on the script.)

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>
> Projections are not pushed down properly during getSplit() when the query 
> involves multiple table although they are getting properly pushed during 
> getRecordReader when the task is working on the split.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-03-06 Thread Josh Elser (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Josh Elser updated HIVE-18872:
--
Assignee: Ankit Singhal  (was: Josh Elser)
  Status: Patch Available  (was: Open)

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HIVE-18872) Projection is not pushed properly when query involves multiple tables

2018-03-06 Thread Ankit Singhal (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ankit Singhal updated HIVE-18872:
-
Attachment: HIVE-18872.patch

> Projection is not pushed properly when query involves multiple tables
> -
>
> Key: HIVE-18872
> URL: https://issues.apache.org/jira/browse/HIVE-18872
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Ankit Singhal
>Assignee: Ankit Singhal
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HIVE-18872.patch
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)