You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by la...@apache.org on 2014/11/04 06:31:30 UTC

git commit: PHOENIX-1400 Copy small attribute in ScanUtil.

Repository: phoenix
Updated Branches:
  refs/heads/4.2 5614dbd5e -> e0c7602de


PHOENIX-1400 Copy small attribute in ScanUtil.


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

Branch: refs/heads/4.2
Commit: e0c7602ded152f91ee949635598af382ac25564e
Parents: 5614dbd
Author: Lars Hofhansl <la...@apache.org>
Authored: Mon Nov 3 22:30:39 2014 -0800
Committer: Lars Hofhansl <la...@apache.org>
Committed: Mon Nov 3 22:31:24 2014 -0800

----------------------------------------------------------------------
 phoenix-core/src/main/java/org/apache/phoenix/util/ScanUtil.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/e0c7602d/phoenix-core/src/main/java/org/apache/phoenix/util/ScanUtil.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/util/ScanUtil.java b/phoenix-core/src/main/java/org/apache/phoenix/util/ScanUtil.java
index 4f7fcff..db1c661 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/util/ScanUtil.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/util/ScanUtil.java
@@ -119,6 +119,7 @@ public class ScanUtil {
             newScan.setFamilyMap(clonedMap);
             // Carry over the reversed attribute
             newScan.setReversed(scan.isReversed());
+            newScan.setSmall(scan.isSmall());
             return newScan;
         } catch (IOException e) {
             throw new RuntimeException(e);