You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2017/10/26 00:54:55 UTC

[geode] branch feature/GEODE-3781 updated: id column is now primary

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

dschneider pushed a commit to branch feature/GEODE-3781
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/GEODE-3781 by this push:
     new 8871ff9  id column is now primary
8871ff9 is described below

commit 8871ff9c629fe88cc0aec4933222e32e22e700a4
Author: Darrel Schneider <ds...@pivotal.io>
AuthorDate: Wed Oct 25 17:54:38 2017 -0700

    id column is now primary
---
 .../apache/geode/connectors/jdbc/JDBCAsyncWriterIntegrationTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/JDBCAsyncWriterIntegrationTest.java b/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/JDBCAsyncWriterIntegrationTest.java
index fdfd218..2152ad9 100644
--- a/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/JDBCAsyncWriterIntegrationTest.java
+++ b/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/JDBCAsyncWriterIntegrationTest.java
@@ -84,8 +84,8 @@ public class JDBCAsyncWriterIntegrationTest {
     Class.forName(driver);
     conn = DriverManager.getConnection(connectionURL);
     stmt = conn.createStatement();
-    stmt.execute(
-        "Create Table " + regionTableName + " (id varchar(10), name varchar(10), age int)");
+    stmt.execute("Create Table " + regionTableName
+        + " (id varchar(10) primary key, name varchar(10), age int)");
   }
 
   public void closeDB() throws Exception {

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].