In Apache-Calcite, how do I add a test to SqlToRelConverterTest.java
?
I've cloned and renamed a simple existing test case as a proof of concept, but when I run the new test I get:
plan ==> expected: <${plan}> but was: <
LogicalSort(sort0=[$0], dir0=[ASC])
LogicalProject(EMPNO=[$0])
LogicalTableScan(table=[[CATALOG, SALES, EMP]])` >
It looks like I need to populate an expected plan, but I'm not sure where to do that.