You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2013/12/27 22:53:26 UTC

git commit: fix typo

Updated Branches:
  refs/heads/trunk 660902929 -> b2933717c


fix typo


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

Branch: refs/heads/trunk
Commit: b2933717c423e5510e35a096e38d084e139cb141
Parents: 6609029
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Fri Dec 27 16:53:03 2013 -0500
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Fri Dec 27 16:53:03 2013 -0500

----------------------------------------------------------------------
 .../src/org/apache/cassandra/stress/operations/CqlOperation.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/b2933717/tools/stress/src/org/apache/cassandra/stress/operations/CqlOperation.java
----------------------------------------------------------------------
diff --git a/tools/stress/src/org/apache/cassandra/stress/operations/CqlOperation.java b/tools/stress/src/org/apache/cassandra/stress/operations/CqlOperation.java
index 1f734be..744e7f6 100644
--- a/tools/stress/src/org/apache/cassandra/stress/operations/CqlOperation.java
+++ b/tools/stress/src/org/apache/cassandra/stress/operations/CqlOperation.java
@@ -334,7 +334,7 @@ public abstract class CqlOperation<V> extends Operation
         {
             String formattedQuery = formatCqlQuery(query, queryParams, true);
             return handler.simpleNativeHandler().apply(
-                    client.execute_cql3_query(query, key, Compression.NONE, state.settings.command.consistencyLevel)
+                    client.execute_cql3_query(formattedQuery, key, Compression.NONE, state.settings.command.consistencyLevel)
             );
         }