Feedback
Did this article resolve your question/issue?

   

Article

Hive JDBC driver not able to join partitioned table with a non-partitioned table

Information

 
TitleHive JDBC driver not able to join partitioned table with a non-partitioned table
URL NameHive-JDBC-driver-not-able-to-join-partitioned-table-with-a-non-partitioned-table
Article Number000179247
EnvironmentProduct: Connect for ODBC Hive driver
Version: 7.1
OS: all supported platforms
Database: Hive
Application: all supported applications
Question/Problem Description
The below error is seen when joining a  partitioned table with a non-partitioned table.
Steps to Reproduce
Clarifying Information

1. Create the following two tables:

create table testpartition(c1 int,c2 varchar(10)) partitioned by (c3 int);
insert into testpartition partition(c3=1) values(1,'test');

create table testjoin(c3 int,c4 string);
insert into testjoin values(1,'value');


2. Execute the following select statement:

select a.c1,a.c2,a.c3,b.c4 from testpartition a join testjoin b on(a.c3=b.c3);
 
Error Message[Hive JDBC Driver][Hive]Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. Table supplier is not a partitioned table.
Defect Number
Enhancement Number
Cause
Resolution
The issue could not be reproduced. However, it was seen that it is not a driver related issue.
Workaround
Notes
Last Modified Date9/7/2016 8:44 AM
Files
Disclaimer The origins of the information on this site may be internal or external to Progress Software Corporation (“Progress”). Progress Software Corporation makes all reasonable efforts to verify this information. However, the information provided is for your information only. Progress Software Corporation makes no explicit or implied claims to the validity of this information.

Any sample code provided on this site is not supported under any Progress support program or service. The sample code is provided on an "AS IS" basis. Progress makes no warranties, express or implied, and disclaims all implied warranties including, without limitation, the implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample code is borne by the user. In no event shall Progress, its employees, or anyone else involved in the creation, production, or delivery of the code be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample code, even if Progress has been advised of the possibility of such damages.