fix typo in removeTruncationRecord
Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/44c462cb Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/44c462cb Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/44c462cb Branch: refs/heads/trunk Commit: 44c462cb7a231c1e99226e4a3cac3f05a3a99669 Parents: c4c9626 Author: Jonathan Ellis <[email protected]> Authored: Thu May 23 11:04:18 2013 -0500 Committer: Jonathan Ellis <[email protected]> Committed: Thu May 23 11:04:18 2013 -0500 ---------------------------------------------------------------------- src/java/org/apache/cassandra/db/SystemTable.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/44c462cb/src/java/org/apache/cassandra/db/SystemTable.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/db/SystemTable.java b/src/java/org/apache/cassandra/db/SystemTable.java index 327f01b..ecdad94 100644 --- a/src/java/org/apache/cassandra/db/SystemTable.java +++ b/src/java/org/apache/cassandra/db/SystemTable.java @@ -193,7 +193,7 @@ public class SystemTable */ public static void removeTruncationRecord(UUID cfId) { - String req = "DELETE truncation_time['%s'] from system.%s WHERE key = '%s'"; + String req = "DELETE truncated_at['%s'] from system.%s WHERE key = '%s'"; processInternal(String.format(req, cfId, LOCAL_CF, LOCAL_KEY)); forceBlockingFlush(LOCAL_CF); }
