Description
I created a join that should clearly result in a single row but return: empty. Could someone validate this bug?
hiveContext.sql('SELECT * FROM (SELECT "c" AS a) AS a JOIN (SELECT "c" AS b) AS b ON a.a = b.b').take(10)
result: []
kind regards
Hans