You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/12/13 13:56:26 UTC

[camel] branch camel-3.0.x updated: Re-introduce correct cql for camel-cassandra-cdi-example

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

acosentino pushed a commit to branch camel-3.0.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.0.x by this push:
     new 22f151f  Re-introduce correct cql for camel-cassandra-cdi-example
22f151f is described below

commit 22f151f7c97c9cf1e7e182d197fe653b078db4be
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 13 14:54:29 2019 +0100

    Re-introduce correct cql for camel-cassandra-cdi-example
---
 examples/camel-example-cdi-cassandraql/README.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/camel-example-cdi-cassandraql/README.adoc b/examples/camel-example-cdi-cassandraql/README.adoc
index 8639033..2fb1634 100644
--- a/examples/camel-example-cdi-cassandraql/README.adoc
+++ b/examples/camel-example-cdi-cassandraql/README.adoc
@@ -60,8 +60,8 @@ Let's create a namespace `+test+` with a table `+users+`
 ....
 create keyspace test with replication = {'class':'SimpleStrategy', 'replication_factor':3};
 use test;
-create table users (id uuid primary key, name text );
-insert into users (id,name) values (now(), 'oscerd');
+create table users ( id int primary key, name text );
+insert into users (id,name) values (1, 'oscerd');
 quit;
 ....