Apache Drill - AssertionError: Реляционное выражение - PullRequest
0 голосов
/ 28 ноября 2018

работает apache-drill-1.14.0

проверил этот запрос на mysql и получил результат за 0,02 сек

выполнение запроса в бурильном клике завершается неудачно с AssertionError

Запрос:

product_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

нужна помощь, если мне нужна дополнительная настройка?

Спасибо

1 Ответ

0 голосов
/ 28 ноября 2018

Не могли бы вы проверить текущий мастер?Похоже, это было исправлено в DRILL-6850 .

...