You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by se...@apache.org on 2019/11/14 00:29:31 UTC

[calcite] branch master updated: [CALCITE-3502] Upgrade Geode dependency 1.6.0 -> 1.9.2

This is an automated email from the ASF dual-hosted git repository.

sereda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new 47b70d2  [CALCITE-3502] Upgrade Geode dependency 1.6.0 -> 1.9.2
47b70d2 is described below

commit 47b70d2d8b5d6f44b104a9b372ed848273729f9f
Author: Andrei Sereda <25...@users.noreply.github.com>
AuthorDate: Wed Nov 13 19:09:01 2019 -0500

    [CALCITE-3502] Upgrade Geode dependency 1.6.0 -> 1.9.2
    
    Remove `ClientCacheFactory.setPdxPersistent` which is deprecated for client caches.
    
    Release notes: https://cwiki.apache.org/confluence/display/GEODE/Release+Notes
---
 .../src/main/java/org/apache/calcite/adapter/geode/util/GeodeUtils.java | 1 -
 pom.xml                                                                 | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/geode/src/main/java/org/apache/calcite/adapter/geode/util/GeodeUtils.java b/geode/src/main/java/org/apache/calcite/adapter/geode/util/GeodeUtils.java
index 34f9e88..24b9b01 100644
--- a/geode/src/main/java/org/apache/calcite/adapter/geode/util/GeodeUtils.java
+++ b/geode/src/main/java/org/apache/calcite/adapter/geode/util/GeodeUtils.java
@@ -103,7 +103,6 @@ public class GeodeUtils {
         .addPoolLocator(locatorHost, locatorPort)
         .setPdxSerializer(new ReflectionBasedAutoSerializer(autoSerializerPackagePath))
         .setPdxReadSerialized(readSerialized)
-        .setPdxPersistent(false)
         .create();
   }
 
diff --git a/pom.xml b/pom.xml
index 13d9ed3..ae5bee2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -89,7 +89,7 @@ limitations under the License.
     <foodmart-queries.version>0.4.1</foodmart-queries.version>
     <forbiddenapis.version>2.6</forbiddenapis.version>
     <freemarker.version>2.3.28</freemarker.version>
-    <geode.version>1.6.0</geode.version>
+    <geode.version>1.9.2</geode.version>
     <git-commit-id-plugin.version>2.1.9</git-commit-id-plugin.version>
     <!-- We support (and test against) Guava versions between
          19.0 and 27.1. Default is 19.0 due to Cassandra adapter. -->