Repository: ignite Updated Branches: refs/heads/ignite-843 fc1a38222 -> f02b9c207
Enabled test. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/fc362fb4 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/fc362fb4 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/fc362fb4 Branch: refs/heads/ignite-843 Commit: fc362fb4d530695e1a487386fd391995e9667473 Parents: 5264ec7 Author: sboikov <[email protected]> Authored: Tue Sep 8 12:13:54 2015 +0300 Committer: sboikov <[email protected]> Committed: Tue Sep 8 12:13:54 2015 +0300 ---------------------------------------------------------------------- .../processors/query/h2/sql/BaseH2CompareQueryTest.java | 5 ----- 1 file changed, 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/fc362fb4/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/BaseH2CompareQueryTest.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/BaseH2CompareQueryTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/BaseH2CompareQueryTest.java index 1e89855..46076a9 100644 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/BaseH2CompareQueryTest.java +++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/sql/BaseH2CompareQueryTest.java @@ -444,20 +444,15 @@ public class BaseH2CompareQueryTest extends AbstractH2CompareQueryTest { * @throws Exception If failed. */ public void testCrossCache() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-829"); - - //TODO Investigate (should be 20 results instead of 0). compareQueryRes0("select firstName, lastName" + " from \"part\".Person, \"part\".Purchase" + " where Person.id = Purchase.personId"); - //TODO Investigate. compareQueryRes0("select concat(firstName, ' ', lastName), Product.name " + " from \"part\".Person, \"part\".Purchase, \"repl\".Product " + " where Person.id = Purchase.personId and Purchase.productId = Product.id" + " group by Product.id"); - //TODO Investigate. compareQueryRes0("select concat(firstName, ' ', lastName), count (Product.id) " + " from \"part\".Person, \"part\".Purchase, \"repl\".Product " + " where Person.id = Purchase.personId and Purchase.productId = Product.id" +
