Description
The way to reproduce:
set hive.execution.engine=spark; create table if not exists test(id int); create table if not exists test1(id int); insert into test values(1); insert into test1 values(1); select max(a.id) from test a ,test1 b where a.id = b.id;
Attachments
Attachments
Issue Links
- is duplicated by
-
HIVE-13314 Hive on spark mapjoin errors if spark.master is not set
- Resolved