You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2014/11/18 01:39:51 UTC

svn commit: r1640260 - in /hive/branches/llap: llap-client/pom.xml llap/pom.xml ql/src/java/org/apache/hadoop/hive/ql/exec/vector/DecimalColumnVector.java ql/src/java/org/apache/hadoop/hive/ql/io/LlapInputFormat.java

Author: sershe
Date: Tue Nov 18 00:39:50 2014
New Revision: 1640260

URL: http://svn.apache.org/r1640260
Log:
Fix build

Modified:
    hive/branches/llap/llap-client/pom.xml
    hive/branches/llap/llap/pom.xml
    hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/DecimalColumnVector.java
    hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/io/LlapInputFormat.java

Modified: hive/branches/llap/llap-client/pom.xml
URL: http://svn.apache.org/viewvc/hive/branches/llap/llap-client/pom.xml?rev=1640260&r1=1640259&r2=1640260&view=diff
==============================================================================
--- hive/branches/llap/llap-client/pom.xml (original)
+++ hive/branches/llap/llap-client/pom.xml Tue Nov 18 00:39:50 2014
@@ -19,7 +19,7 @@
   <parent>
     <groupId>org.apache.hive</groupId>
     <artifactId>hive</artifactId>
-    <version>0.14.0-SNAPSHOT</version>
+    <version>0.15.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

Modified: hive/branches/llap/llap/pom.xml
URL: http://svn.apache.org/viewvc/hive/branches/llap/llap/pom.xml?rev=1640260&r1=1640259&r2=1640260&view=diff
==============================================================================
--- hive/branches/llap/llap/pom.xml (original)
+++ hive/branches/llap/llap/pom.xml Tue Nov 18 00:39:50 2014
@@ -19,7 +19,7 @@
   <parent>
     <groupId>org.apache.hive</groupId>
     <artifactId>hive</artifactId>
-    <version>0.14.0-SNAPSHOT</version>
+    <version>0.15.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

Modified: hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/DecimalColumnVector.java
URL: http://svn.apache.org/viewvc/hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/DecimalColumnVector.java?rev=1640260&r1=1640259&r2=1640260&view=diff
==============================================================================
--- hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/DecimalColumnVector.java (original)
+++ hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/DecimalColumnVector.java Tue Nov 18 00:39:50 2014
@@ -76,7 +76,7 @@ public class DecimalColumnVector extends
   public void fill(Decimal128 value) {
     noNulls = true;
     isRepeating = true;
-    vector[0] = value;
+    // TODO#: vector[0] = value;
   }
 
   // Fill the column vector with nulls

Modified: hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/io/LlapInputFormat.java
URL: http://svn.apache.org/viewvc/hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/io/LlapInputFormat.java?rev=1640260&r1=1640259&r2=1640260&view=diff
==============================================================================
--- hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/io/LlapInputFormat.java (original)
+++ hive/branches/llap/ql/src/java/org/apache/hadoop/hive/ql/io/LlapInputFormat.java Tue Nov 18 00:39:50 2014
@@ -308,7 +308,7 @@ public class LlapInputFormat<T>
         } else {
           c.reset();
           c.noNulls = !hasNulls;
-          currentVectorSlice.copyDecimals(c.vector, hasNulls ? c.isNull : null, 0);
+          // TODO#: currentVectorSlice.copyDecimals(c.vector, hasNulls ? c.isNull : null, 0);
           if (hasNulls) {
             NullUtil.setNullDataEntriesDecimal(c, false, null, rowCount);
           }