我们正试图通过spring boot连接hive数据库,我能够连接到hive数据库,但是在执行sql语句时,我们得到的是as table not found,实际上表存在的地方
Entity class is defined as below
@Entity
@Table(name = "site_text", schema = "text_data")
public class Plants implements Serializable {
@Id
@Column(name = "site_text")
private String siteName;
}
Error as below-----
org.apache.hadoop.hive.ql.parse.SemanticException: Line 1:63 Table not found 'plants_text'
暂无答案!
目前还没有任何答案,快来回答吧!