Repository: tajo Updated Branches: refs/heads/master 67c4541ee -> 3035b0143
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/3035b014 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/3035b014 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/3035b014 Branch: refs/heads/master Commit: 3035b0143d1900439ac186480a748f36556aa72c Parents: 67c4541 Author: Jihoon Son <[email protected]> Authored: Tue Sep 29 19:03:39 2015 +0900 Committer: Jihoon Son <[email protected]> Committed: Tue Sep 29 19:03:39 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/3035b014/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 {
