Fix typo in benchmark insert statement

This commit is contained in:
Tyler Hobbs
2014-04-16 16:00:47 -05:00
parent 2aff6e03de
commit feb73eb7f5

View File

@@ -100,7 +100,7 @@ def benchmark(thread_class):
time.sleep(2.0)
query = session.prepare("""
INSERT INTO {table} (thekey, col1, col2) VALUES (?, ?, ?))
INSERT INTO {table} (thekey, col1, col2) VALUES (?, ?, ?)
""".format(table=TABLE))
values = ('key', 'a', 'b')