You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by ji...@apache.org on 2014/03/26 10:02:23 UTC

git commit: TAJO-692: Missing Null handling for INET4 in RowStoreUtil. (fixed missing changes)

Repository: tajo
Updated Branches:
  refs/heads/branch-0.8.0 c08a0128e -> a6fd04e01


TAJO-692: Missing Null handling for INET4 in RowStoreUtil. (fixed missing changes)


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/a6fd04e0
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/a6fd04e0
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/a6fd04e0

Branch: refs/heads/branch-0.8.0
Commit: a6fd04e01e4c1eb10c05907282af7787bbacf812
Parents: c08a012
Author: Jihoon Son <ji...@apache.org>
Authored: Wed Mar 26 17:52:33 2014 +0900
Committer: Jihoon Son <ji...@apache.org>
Committed: Wed Mar 26 17:52:33 2014 +0900

----------------------------------------------------------------------
 .../org/apache/tajo/engine/query/TestNetTypes.java   | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/a6fd04e0/tajo-core/tajo-core-backend/src/test/java/org/apache/tajo/engine/query/TestNetTypes.java
----------------------------------------------------------------------
diff --git a/tajo-core/tajo-core-backend/src/test/java/org/apache/tajo/engine/query/TestNetTypes.java b/tajo-core/tajo-core-backend/src/test/java/org/apache/tajo/engine/query/TestNetTypes.java
index a318fee..038bf71 100644
--- a/tajo-core/tajo-core-backend/src/test/java/org/apache/tajo/engine/query/TestNetTypes.java
+++ b/tajo-core/tajo-core-backend/src/test/java/org/apache/tajo/engine/query/TestNetTypes.java
@@ -75,13 +75,14 @@ public class TestNetTypes extends QueryTestCaseBase {
 
   @Test
   public final void testSort2() throws Exception {
-    // Skip all tests when HCatalogStore is used.
-    if (!testingCluster.isHCatalogStoreRunning()) {
-      // select addr from table2 order by addr;
-      ResultSet res = executeQuery();
-      assertResultSet(res);
-      cleanupQuery(res);
-    }
+    executeDDL("table1_ddl.sql", "table1");
+    executeDDL("table2_ddl.sql", "table2");
+    // select addr from table2 order by addr;
+    ResultSet res = executeQuery();
+    assertResultSet(res);
+    cleanupQuery(res);
+    executeDDL("drop_table1_ddl.sql", "table1");
+    executeDDL("drop_table2_ddl.sql", "table2");
   }
 
   @Test