File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Unreleased
4
4
5
5
Features
6
6
--------
7
+ * Add additional_write_policy and read_repair to system schema parsing (PYTHON-1048)
7
8
* Remove *read_repair_chance table options (PYTHON-1140)
8
9
9
10
Bug Fixes
Original file line number Diff line number Diff line change @@ -2570,14 +2570,22 @@ class SchemaParserDSE60(SchemaParserV3):
2570
2570
2571
2571
class SchemaParserV4 (SchemaParserV3 ):
2572
2572
2573
- recognized_table_options = tuple (
2574
- opt for opt in
2575
- SchemaParserV3 .recognized_table_options
2576
- if opt not in (
2577
- # removed in V4: CASSANDRA-13910
2578
- 'dclocal_read_repair_chance' , 'read_repair_chance'
2579
- )
2580
- )
2573
+ recognized_table_options = (
2574
+ 'additional_write_policy' ,
2575
+ 'bloom_filter_fp_chance' ,
2576
+ 'caching' ,
2577
+ 'cdc' ,
2578
+ 'comment' ,
2579
+ 'compaction' ,
2580
+ 'compression' ,
2581
+ 'crc_check_chance' ,
2582
+ 'default_time_to_live' ,
2583
+ 'gc_grace_seconds' ,
2584
+ 'max_index_interval' ,
2585
+ 'memtable_flush_period_in_ms' ,
2586
+ 'min_index_interval' ,
2587
+ 'read_repair' ,
2588
+ 'speculative_retry' )
2581
2589
2582
2590
_SELECT_VIRTUAL_KEYSPACES = 'SELECT * from system_virtual_schema.keyspaces'
2583
2591
_SELECT_VIRTUAL_TABLES = 'SELECT * from system_virtual_schema.tables'
You can’t perform that action at this time.
0 commit comments