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/06/23 23:20:09 UTC

git commit: 'trigger_class' is not a create table option (cql2)

Updated Branches:
  refs/heads/trunk 921761575 -> c0547983d


'trigger_class' is not a create table option (cql2)


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

Branch: refs/heads/trunk
Commit: c0547983d39eab6a16f4974a1871873b5b8116fa
Parents: 9217615
Author: Dave Brosius <db...@apache.org>
Authored: Sun Jun 23 17:18:44 2013 -0400
Committer: Dave Brosius <db...@apache.org>
Committed: Sun Jun 23 17:18:44 2013 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/cql/CFPropDefs.java | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/c0547983/src/java/org/apache/cassandra/cql/CFPropDefs.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/cql/CFPropDefs.java b/src/java/org/apache/cassandra/cql/CFPropDefs.java
index 760da76..b3b2df4 100644
--- a/src/java/org/apache/cassandra/cql/CFPropDefs.java
+++ b/src/java/org/apache/cassandra/cql/CFPropDefs.java
@@ -55,7 +55,6 @@ public class CFPropDefs {
     public static final String KW_POPULATE_IO_CACHE_ON_FLUSH = "populate_io_cache_on_flush";
     public static final String KW_BF_FP_CHANCE = "bloom_filter_fp_chance";
     public static final String KW_MEMTABLE_FLUSH_PERIOD = "memtable_flush_period_in_ms";
-    public static final String KW_TRIGGER_CLASS = "trigger_class";
 
     // Maps CQL short names to the respective Cassandra comparator/validator class names
     public static final Map<String, String> comparators = new HashMap<String, String>();
@@ -99,7 +98,6 @@ public class CFPropDefs {
         keywords.add(KW_POPULATE_IO_CACHE_ON_FLUSH);
         keywords.add(KW_BF_FP_CHANCE);
         keywords.add(KW_MEMTABLE_FLUSH_PERIOD);
-        keywords.add(KW_TRIGGER_CLASS);
 
         obsoleteKeywords.add("row_cache_size");
         obsoleteKeywords.add("key_cache_size");