Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/984#discussion_r145294152
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/TestAltSortQueries.java ---
@@ -64,9 +73,9 @@ public void testJoinWithLimit() throws Exception{
" nations.N_NAME,\n" +
" regions.R_NAME\n" +
"FROM\n" +
- " dfs_test.`[WORKING_PATH]/../../sample-data/nation.parquet`
nations\n" +
+ " dfs.`/sample-data/nation.parquet` nations\n" +
--- End diff --
Does this work? Did we remap `dfs` to point the per-query temp directory?
Do we want to do that? Or, should we use `dfs_test` here as well?
---