From 9450ae86733bea56df482659d214ee07a74fea7f Mon Sep 17 00:00:00 2001 From: Jean-Daniel Cryans <jdcryans@cloudera.com> Date: Wed, 9 Dec 2015 16:33:20 -0800 Subject: [PATCH] [kudu] Bump kudu dependency to 0.6.0 This version and the previous one are wire compatible, the only code chance reflects a naming change in the client API. --- kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java b/kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java index f063ed7d..616a4a3c 100644 --- a/kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java +++ b/kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java @@ -156,7 +156,7 @@ public class KuduYCSBClient extends com.yahoo.ycsb.DB { } schema = new Schema(columns); - CreateTableBuilder builder = new CreateTableBuilder(); + CreateTableOptions builder = new CreateTableOptions(); builder.setNumReplicas(numReplicas); // create n-1 split keys, which will end up being n tablets master-side for (int i = 1; i < numTablets + 0; i++) { diff --git a/pom.xml b/pom.xml index b42d651d..edca234e 100644 --- a/pom.xml +++ b/pom.xml @@ -78,7 +78,7 @@ LICENSE file. <cassandra2.cql.version>2.1.8</cassandra2.cql.version> <gemfire.version>8.1.0</gemfire.version> <infinispan.version>7.2.2.Final</infinispan.version> - <kudu.version>0.5.0</kudu.version> + <kudu.version>0.6.0</kudu.version> <openjpa.jdbc.version>2.1.1</openjpa.jdbc.version> <!--<mapkeeper.version>1.0</mapkeeper.version>--> <mongodb.version>3.0.3</mongodb.version> -- GitLab