mirror of https://github.com/apache/cassandra
Fix test broken after second pass of CASSANDRA-11803 changes
Patch by Alex Petrov; reviewed by Carl Yeksigian for CASSANDRA-11803
This commit is contained in:
parent
1f19d1a7bf
commit
5f2367ef92
|
|
@ -649,10 +649,10 @@ public class ColumnFamilyStoreCQLHelperTest extends CQLTester
|
|||
|
||||
assertTrue(ColumnFamilyStoreCQLHelper.getCFMetadataAsCQL(cfs.metadata, true).startsWith(
|
||||
"CREATE TABLE IF NOT EXISTS " + DYNAMIC_COMPOSITE + "." + DYNAMIC_COMPOSITE + " (\n" +
|
||||
"\t\"key\" ascii,\n" +
|
||||
"\tkey ascii,\n" +
|
||||
"\tcols 'org.apache.cassandra.db.marshal.DynamicCompositeType(a=>org.apache.cassandra.db.marshal.BytesType,b=>org.apache.cassandra.db.marshal.BytesType,c=>org.apache.cassandra.db.marshal.BytesType)',\n" +
|
||||
"\tval ascii,\n" +
|
||||
"\tPRIMARY KEY (\"key\", cols))\n" +
|
||||
"\tPRIMARY KEY (key, cols))\n" +
|
||||
"\tWITH ID = " + cfs.metadata.cfId + "\n" +
|
||||
"\tAND COMPACT STORAGE"));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue