You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2017/01/26 23:06:41 UTC

[3/3] calcite git commit: [CALCITE-1600] In Meta.Frame.create, change type of "offset" parameter from "int" to "long" (Gian Merlino)

[CALCITE-1600] In Meta.Frame.create, change type of "offset" parameter from "int" to "long" (Gian Merlino)

Close apache/calcite#351


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

Branch: refs/heads/master
Commit: 7605d42185ac627f33d14ffbb0e95d6ca4082659
Parents: ae12a5d
Author: Gian Merlino <gi...@gmail.com>
Authored: Sat Jan 14 09:38:35 2017 -0800
Committer: Julian Hyde <jh...@apache.org>
Committed: Thu Jan 26 12:23:13 2017 -0800

----------------------------------------------------------------------
 avatica/core/src/main/java/org/apache/calcite/avatica/Meta.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/7605d421/avatica/core/src/main/java/org/apache/calcite/avatica/Meta.java
----------------------------------------------------------------------
diff --git a/avatica/core/src/main/java/org/apache/calcite/avatica/Meta.java b/avatica/core/src/main/java/org/apache/calcite/avatica/Meta.java
index c2c6a39..7df9ade 100644
--- a/avatica/core/src/main/java/org/apache/calcite/avatica/Meta.java
+++ b/avatica/core/src/main/java/org/apache/calcite/avatica/Meta.java
@@ -909,7 +909,7 @@ public interface Meta {
     }
 
     @JsonCreator
-    public static Frame create(@JsonProperty("offset") int offset,
+    public static Frame create(@JsonProperty("offset") long offset,
         @JsonProperty("done") boolean done,
         @JsonProperty("rows") List<Object> rows) {
       if (offset == 0 && done && rows.isEmpty()) {