mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into trunk
This commit is contained in:
commit
4ea742cd0a
|
|
@ -21,6 +21,7 @@
|
|||
* (Windows) handle spaces in path names (CASSANDRA-7451)
|
||||
* Ensure writes have completed after dropping a table, before recycling
|
||||
commit log segments (CASSANDRA-7437)
|
||||
* Remove left-over rows_per_partition_to_cache (CASSANDRA-7493)
|
||||
Merged from 2.0:
|
||||
* Fix CC#collectTimeOrderedData() tombstone optimisations (CASSANDRA-7394)
|
||||
* Support DISTINCT for static columns and fix behaviour when DISTINC is
|
||||
|
|
|
|||
|
|
@ -182,7 +182,6 @@ public final class CFMetaData
|
|||
+ "min_index_interval int,"
|
||||
+ "max_index_interval int,"
|
||||
+ "dropped_columns map<text, bigint>,"
|
||||
+ "rows_per_partition_to_cache text,"
|
||||
+ "PRIMARY KEY (keyspace_name, columnfamily_name)"
|
||||
+ ") WITH COMMENT='ColumnFamily definitions' AND gc_grace_seconds=8640");
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ public class CFPropDefs extends PropertyDefinitions
|
|||
public static final String KW_MINCOMPACTIONTHRESHOLD = "min_threshold";
|
||||
public static final String KW_MAXCOMPACTIONTHRESHOLD = "max_threshold";
|
||||
public static final String KW_CACHING = "caching";
|
||||
public static final String KW_ROWS_PER_PARTITION_TO_CACHE = "rows_per_partition_to_cache";
|
||||
public static final String KW_DEFAULT_TIME_TO_LIVE = "default_time_to_live";
|
||||
public static final String KW_MIN_INDEX_INTERVAL = "min_index_interval";
|
||||
public static final String KW_MAX_INDEX_INTERVAL = "max_index_interval";
|
||||
|
|
|
|||
Loading…
Reference in New Issue