Repository: tajo Updated Branches: refs/heads/branch-0.11.0 b418c4991 -> 3d0e9833c
TAJO-1889: UndefinedColumnException when a query with table subquery is executed on self-describing tables. (fix wrong query) Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/3d0e9833 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/3d0e9833 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/3d0e9833 Branch: refs/heads/branch-0.11.0 Commit: 3d0e9833c64365d6f3d4fc507a70dcd9bdb0ac63 Parents: b418c49 Author: Jihoon Son <[email protected]> Authored: Tue Sep 29 19:05:01 2015 +0900 Committer: Jihoon Son <[email protected]> Committed: Tue Sep 29 19:05:01 2015 +0900 ---------------------------------------------------------------------- .../org/apache/tajo/engine/query/TestQueryOnSelfDescTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/3d0e9833/tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestQueryOnSelfDescTable.java ---------------------------------------------------------------------- diff --git a/tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestQueryOnSelfDescTable.java b/tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestQueryOnSelfDescTable.java index 84ebbc2..0e5e577 100644 --- a/tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestQueryOnSelfDescTable.java +++ b/tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestQueryOnSelfDescTable.java @@ -123,7 +123,7 @@ public class TestQueryOnSelfDescTable extends QueryTestCaseBase { "from\n" + " self_desc_table2\n" + ") t " + - "where len > 1" + "where len = 1" ) ) public final void testTableSubquery3() throws Exception {
