Github user ilooner commented on a diff in the pull request:
https://github.com/apache/drill/pull/1117#discussion_r167734589
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/join/TestHashJoinAdvanced.java
---
@@ -197,4 +199,14 @@ public void emptyPartTest() throws Exception {
BaseTestQuery.resetSessionOption(ExecConstants.SLICE_TARGET);
}
}
+
+ @Test // DRILL-6089
+ public void testJoinOrdering() throws Exception {
+ final String query = "select * from dfs.`sample-data/nation.parquet`
nation left outer join " +
--- End diff --
Thanks for catching this, updated the test.
---