apache drill-assertionerror:关系表达式

6tdlim6h  于 2021-06-17  发布在  Mysql
关注(0)|答案(1)|浏览(259)

运行apache-drill-1.14.0
在mysql上测试了这个查询,并在0.02秒内得到了结果
在drill cli中运行查询失败,并显示assertionerror
查询:
产品id为bigint

SELECT test50.customername, test50.color, test50.age, test50.city,  
  test50.product_id, test50.price FROM myplugin.sampler.test50 JOIN 
  myplugin.sampler.test52 ON test50.product_id = test52.product_id WHERE 
  test50.product_id = 759216 GROUP BY test50.customername, test50.color,
  test50.age, test50.city, test50.product_id, test50.price ORDER BY
  test50.customername;

错误:

Error: SYSTEM ERROR: AssertionError: Relational expression
rel#873:DrillFilterRel.JDBC.myplugin.ANY([]).
[](input=rel#83:JdbcTableScan.JDBC.myplugin.ANY([]).[](table=[myplugin, 
sampler, test50]),condition=OR(=($18, 759216), =($18, 494636))) has  
calling-convention JDBC.myplugin but does not implement the required interface 
'interface org.apache.calcite.adapter.jdbc.JdbcRel' of that convention

如果我需要一些额外的配置需要帮助吗?
谢谢

vuktfyat

vuktfyat1#

你能看看现在的主人吗?好像是在钻-6850里修好的。

相关问题