Skip to content

Commit

Permalink
cockroach: update use of SPLIT AT
Browse files Browse the repository at this point in the history
The syntax of SPLIT AT is being changed in
cockroachdb/cockroach#14281.
  • Loading branch information
RaduBerinde committed Mar 21, 2017
1 parent 2d73813 commit ce325f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cockroachdb/src/jepsen/cockroach/client.clj
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
(defn split!
"Split the given table at the given key."
[conn table k]
(query conn [(str "alter table " (name table) " split at ("
(query conn [(str "alter table " (name table) " split at values ("
(if (number? k)
k
(str "'" k "'"))
Expand Down

0 comments on commit ce325f1

Please sign in to comment.