Update 6.0 and 7.0 branches to reflect their versions across the project.

In 6.0, only rename test/data/serialization/5.1 to 6.0
In 7.0, same plus update edges in UpgradeTestBase

patch by Stefan Miklosovic; reviewed by Dmitry Konstantinov for CASSANDRA-21319
This commit is contained in:
Stefan Miklosovic 2026-04-20 18:03:46 +02:00
parent 53f188293d
commit e193523a06
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
8 changed files with 2 additions and 2 deletions

View File

@ -36,13 +36,13 @@ import static org.apache.cassandra.config.CassandraRelevantProperties.TEST_SERIA
public class AbstractSerializationsTester
{
protected static final String CUR_VER = CASSANDRA_VERSION.getString("5.1");
protected static final String CUR_VER = CASSANDRA_VERSION.getString("6.0");
protected static final Map<String, Integer> VERSION_MAP = new HashMap<String, Integer> ()
{{
put("3.0", MessagingService.VERSION_30);
put("4.0", MessagingService.VERSION_40);
put("5.0", MessagingService.VERSION_50);
put("5.1", MessagingService.VERSION_60);
put("6.0", MessagingService.VERSION_60);
}};
protected static final boolean EXECUTE_WRITES = TEST_SERIALIZATION_WRITES.getBoolean();