With this schema: CREATE TABLE roll ( id INT, image BIGINT, data VARCHAR static, PRIMARY KEY ((id), image) ) WITH gc_grace_seconds = 3456000 AND compaction = { 'class' : 'LeveledCompactionStrategy', 'sstable_size_in_mb' : 160 };
if I run SELECT image FROM roll WHERE id = X on 2.0, where partition X has only static data, no rows were returned. In 2.1.11, it returns one row with a null value. Was this change in behavior intentional? Is there an option to get the old behavior back? I potentially have broken code anywhere that I access a table with a static column. Kind of a mess, and not the kind of thing a person expects when upgrading. Thanks Robert