运行apache-drill-1.14.0
存储插件1:myplugin
SELECT t1.id FROM myplugin.db.t1, myplugin.db.t2 WHERE t1.id = t2.id AND t2.id = 12345 GROUP BY t1.id ORDER BY t1.id;
与同一数据库中的另一个表的内部联接返回-error:system error:assertionerror:relational expression
创建另一个存储插件2:myplugin2(plugin1的副本)
SELECT t1.id FROM myplugin.db.t1, myplugin2.db.t2 WHERE t1.id = t2.id AND t2.id = 12345 GROUP BY t1.id ORDER BY t1.id;
工作正常
1条答案
按热度按时间trnvg8h31#
看起来是在…的范围内解决的https://issues.apache.org/jira/browse/drill-6850
请检查drill master分支(参见帮助)或等待新的1.15.0 drill版本。