http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/tools/SSTableMetadataViewer.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/tools/SSTableMetadataViewer.java b/src/java/org/apache/cassandra/tools/SSTableMetadataViewer.java index b405fad..019e053 100644 --- a/src/java/org/apache/cassandra/tools/SSTableMetadataViewer.java +++ b/src/java/org/apache/cassandra/tools/SSTableMetadataViewer.java @@ -215,7 +215,7 @@ public class SSTableMetadataViewer try (DataInputStream iStream = new DataInputStream(new FileInputStream(summariesFile))) { - Pair<DecoratedKey, DecoratedKey> firstLast = new IndexSummary.IndexSummarySerializer().deserializeFirstLastKey(iStream, partitioner, descriptor.version.hasSamplingLevel()); + Pair<DecoratedKey, DecoratedKey> firstLast = new IndexSummary.IndexSummarySerializer().deserializeFirstLastKey(iStream, partitioner); out.printf("First token: %s (key=%s)%n", firstLast.left.getToken(), keyType.getString(firstLast.left.getKey())); out.printf("Last token: %s (key=%s)%n", firstLast.right.getToken(), keyType.getString(firstLast.right.getKey())); }
http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/tools/SSTableRepairedAtSetter.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/tools/SSTableRepairedAtSetter.java b/src/java/org/apache/cassandra/tools/SSTableRepairedAtSetter.java index 413ec4d..b97960a 100644 --- a/src/java/org/apache/cassandra/tools/SSTableRepairedAtSetter.java +++ b/src/java/org/apache/cassandra/tools/SSTableRepairedAtSetter.java @@ -82,21 +82,20 @@ public class SSTableRepairedAtSetter for (String fname: fileNames) { Descriptor descriptor = Descriptor.fromFilename(fname); - if (descriptor.version.hasRepairedAt()) + if (!descriptor.version.isCompatible()) { - if (setIsRepaired) - { - FileTime f = Files.getLastModifiedTime(new File(descriptor.filenameFor(Component.DATA)).toPath()); - descriptor.getMetadataSerializer().mutateRepairedAt(descriptor, f.toMillis()); - } - else - { - descriptor.getMetadataSerializer().mutateRepairedAt(descriptor, ActiveRepairService.UNREPAIRED_SSTABLE); - } + System.err.println("SSTable " + fname + " is in a old and unsupported format"); + continue; + } + + if (setIsRepaired) + { + FileTime f = Files.getLastModifiedTime(new File(descriptor.filenameFor(Component.DATA)).toPath()); + descriptor.getMetadataSerializer().mutateRepairedAt(descriptor, f.toMillis()); } else { - System.err.println("SSTable " + fname + " does not have repaired property, run upgradesstables"); + descriptor.getMetadataSerializer().mutateRepairedAt(descriptor, ActiveRepairService.UNREPAIRED_SSTABLE); } } } http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/tools/StandaloneSplitter.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/tools/StandaloneSplitter.java b/src/java/org/apache/cassandra/tools/StandaloneSplitter.java index 1e57ff4..aaaa9db 100644 --- a/src/java/org/apache/cassandra/tools/StandaloneSplitter.java +++ b/src/java/org/apache/cassandra/tools/StandaloneSplitter.java @@ -70,12 +70,11 @@ public class StandaloneSplitter continue; } - Pair<Descriptor, Component> pair = SSTable.tryComponentFromFilename(file.getParentFile(), file.getName()); - if (pair == null) { + Descriptor desc = SSTable.tryDescriptorFromFilename(file); + if (desc == null) { System.out.println("Skipping non sstable file " + file); continue; } - Descriptor desc = pair.left; if (ksName == null) ksName = desc.ksname; http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/utils/BloomFilter.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/utils/BloomFilter.java b/src/java/org/apache/cassandra/utils/BloomFilter.java index 4ff07b7..bc52c09 100644 --- a/src/java/org/apache/cassandra/utils/BloomFilter.java +++ b/src/java/org/apache/cassandra/utils/BloomFilter.java @@ -37,18 +37,12 @@ public class BloomFilter extends WrappedSharedCloseable implements IFilter public final IBitSet bitset; public final int hashCount; - /** - * CASSANDRA-8413: 3.0 (inverted) bloom filters have no 'static' bits caused by using the same upper bits - * for both bloom filter and token distribution. - */ - public final boolean oldBfHashOrder; - BloomFilter(int hashCount, IBitSet bitset, boolean oldBfHashOrder) + BloomFilter(int hashCount, IBitSet bitset) { super(bitset); this.hashCount = hashCount; this.bitset = bitset; - this.oldBfHashOrder = oldBfHashOrder; } private BloomFilter(BloomFilter copy) @@ -56,7 +50,6 @@ public class BloomFilter extends WrappedSharedCloseable implements IFilter super(copy); this.hashCount = copy.hashCount; this.bitset = copy.bitset; - this.oldBfHashOrder = copy.oldBfHashOrder; } public long serializedSize() @@ -101,13 +94,6 @@ public class BloomFilter extends WrappedSharedCloseable implements IFilter @Inline private void setIndexes(long base, long inc, int count, long max, long[] results) { - if (oldBfHashOrder) - { - long x = inc; - inc = base; - base = x; - } - for (int i = 0; i < count; i++) { results[i] = FBUtilities.abs(base % max); @@ -155,7 +141,7 @@ public class BloomFilter extends WrappedSharedCloseable implements IFilter public String toString() { - return "BloomFilter[hashCount=" + hashCount + ";oldBfHashOrder=" + oldBfHashOrder + ";capacity=" + bitset.capacity() + ']'; + return "BloomFilter[hashCount=" + hashCount + ";capacity=" + bitset.capacity() + ']'; } public void addTo(Ref.IdentityCollection identities) http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/utils/BloomFilterSerializer.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/utils/BloomFilterSerializer.java b/src/java/org/apache/cassandra/utils/BloomFilterSerializer.java index 6f57fc8..17ab123 100644 --- a/src/java/org/apache/cassandra/utils/BloomFilterSerializer.java +++ b/src/java/org/apache/cassandra/utils/BloomFilterSerializer.java @@ -38,18 +38,18 @@ final class BloomFilterSerializer bf.bitset.serialize(out); } - public static BloomFilter deserialize(DataInput in, boolean oldBfHashOrder) throws IOException + public static BloomFilter deserialize(DataInput in) throws IOException { - return deserialize(in, false, oldBfHashOrder); + return deserialize(in, false); } @SuppressWarnings("resource") - public static BloomFilter deserialize(DataInput in, boolean offheap, boolean oldBfHashOrder) throws IOException + public static BloomFilter deserialize(DataInput in, boolean offheap) throws IOException { int hashes = in.readInt(); IBitSet bs = offheap ? OffHeapBitSet.deserialize(in) : OpenBitSet.deserialize(in); - return new BloomFilter(hashes, bs, oldBfHashOrder); + return new BloomFilter(hashes, bs); } /** http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/utils/FilterFactory.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/utils/FilterFactory.java b/src/java/org/apache/cassandra/utils/FilterFactory.java index ddcf1bb..f79f720 100644 --- a/src/java/org/apache/cassandra/utils/FilterFactory.java +++ b/src/java/org/apache/cassandra/utils/FilterFactory.java @@ -40,16 +40,16 @@ public class FilterFactory BloomFilterSerializer.serialize((BloomFilter) bf, output); } - public static IFilter deserialize(DataInput input, boolean offheap, boolean oldBfHashOrder) throws IOException + public static IFilter deserialize(DataInput input, boolean offheap) throws IOException { - return BloomFilterSerializer.deserialize(input, offheap, oldBfHashOrder); + return BloomFilterSerializer.deserialize(input, offheap); } /** * @return A BloomFilter with the lowest practical false positive * probability for the given number of elements. */ - public static IFilter getFilter(long numElements, int targetBucketsPerElem, boolean offheap, boolean oldBfHashOrder) + public static IFilter getFilter(long numElements, int targetBucketsPerElem, boolean offheap) { int maxBucketsPerElement = Math.max(1, BloomCalculations.maxBucketsPerElement(numElements)); int bucketsPerElement = Math.min(targetBucketsPerElem, maxBucketsPerElement); @@ -58,7 +58,7 @@ public class FilterFactory logger.warn("Cannot provide an optimal BloomFilter for {} elements ({}/{} buckets per element).", numElements, bucketsPerElement, targetBucketsPerElem); } BloomCalculations.BloomSpecification spec = BloomCalculations.computeBloomSpec(bucketsPerElement); - return createFilter(spec.K, numElements, spec.bucketsPerElement, offheap, oldBfHashOrder); + return createFilter(spec.K, numElements, spec.bucketsPerElement, offheap); } /** @@ -68,21 +68,21 @@ public class FilterFactory * Asserts that the given probability can be satisfied using this * filter. */ - public static IFilter getFilter(long numElements, double maxFalsePosProbability, boolean offheap, boolean oldBfHashOrder) + public static IFilter getFilter(long numElements, double maxFalsePosProbability, boolean offheap) { assert maxFalsePosProbability <= 1.0 : "Invalid probability"; if (maxFalsePosProbability == 1.0) return new AlwaysPresentFilter(); int bucketsPerElement = BloomCalculations.maxBucketsPerElement(numElements); BloomCalculations.BloomSpecification spec = BloomCalculations.computeBloomSpec(bucketsPerElement, maxFalsePosProbability); - return createFilter(spec.K, numElements, spec.bucketsPerElement, offheap, oldBfHashOrder); + return createFilter(spec.K, numElements, spec.bucketsPerElement, offheap); } @SuppressWarnings("resource") - private static IFilter createFilter(int hash, long numElements, int bucketsPer, boolean offheap, boolean oldBfHashOrder) + private static IFilter createFilter(int hash, long numElements, int bucketsPer, boolean offheap) { long numBits = (numElements * bucketsPer) + BITSET_EXCESS; IBitSet bitset = offheap ? new OffHeapBitSet(numBits) : new OpenBitSet(numBits); - return new BloomFilter(hash, bitset, oldBfHashOrder); + return new BloomFilter(hash, bitset); } } http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/src/java/org/apache/cassandra/utils/MerkleTree.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/utils/MerkleTree.java b/src/java/org/apache/cassandra/utils/MerkleTree.java index ba36345..4ada91c 100644 --- a/src/java/org/apache/cassandra/utils/MerkleTree.java +++ b/src/java/org/apache/cassandra/utils/MerkleTree.java @@ -845,16 +845,6 @@ public class MerkleTree implements Serializable { public void serialize(Inner inner, DataOutputPlus out, int version) throws IOException { - if (version < MessagingService.VERSION_30) - { - if (inner.hash == null) - out.writeInt(-1); - else - { - out.writeInt(inner.hash.length); - out.write(inner.hash); - } - } Token.serializer.serialize(inner.token, out, version); Hashable.serializer.serialize(inner.lchild, out, version); Hashable.serializer.serialize(inner.rchild, out, version); @@ -862,13 +852,6 @@ public class MerkleTree implements Serializable public Inner deserialize(DataInput in, IPartitioner p, int version) throws IOException { - if (version < MessagingService.VERSION_30) - { - int hashLen = in.readInt(); - byte[] hash = hashLen >= 0 ? new byte[hashLen] : null; - if (hash != null) - in.readFully(hash); - } Token token = Token.serializer.deserialize(in, p, version); Hashable lchild = Hashable.serializer.deserialize(in, p, version); Hashable rchild = Hashable.serializer.deserialize(in, p, version); @@ -877,18 +860,9 @@ public class MerkleTree implements Serializable public long serializedSize(Inner inner, int version) { - long size = 0; - if (version < MessagingService.VERSION_30) - { - size += inner.hash == null - ? TypeSizes.sizeof(-1) - : TypeSizes.sizeof(inner.hash().length) + inner.hash().length; - } - - size += Token.serializer.serializedSize(inner.token, version) - + Hashable.serializer.serializedSize(inner.lchild, version) - + Hashable.serializer.serializedSize(inner.rchild, version); - return size; + return Token.serializer.serializedSize(inner.token, version) + + Hashable.serializer.serializedSize(inner.lchild, version) + + Hashable.serializer.serializedSize(inner.rchild, version); } } } @@ -938,24 +912,18 @@ public class MerkleTree implements Serializable { if (leaf.hash == null) { - if (version < MessagingService.VERSION_30) - out.writeInt(-1); - else - out.writeByte(-1); + out.writeByte(-1); } else { - if (version < MessagingService.VERSION_30) - out.writeInt(leaf.hash.length); - else - out.writeByte(leaf.hash.length); + out.writeByte(leaf.hash.length); out.write(leaf.hash); } } public Leaf deserialize(DataInput in, IPartitioner p, int version) throws IOException { - int hashLen = version < MessagingService.VERSION_30 ? in.readInt() : in.readByte(); + int hashLen = in.readByte(); byte[] hash = hashLen < 0 ? null : new byte[hashLen]; if (hash != null) in.readFully(hash); @@ -964,11 +932,9 @@ public class MerkleTree implements Serializable public long serializedSize(Leaf leaf, int version) { - long size = version < MessagingService.VERSION_30 ? TypeSizes.sizeof(1) : 1; + long size = 1; if (leaf.hash != null) - { size += leaf.hash().length; - } return size; } } http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-CompressionInfo.db b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-CompressionInfo.db deleted file mode 100644 index 307eeb3..0000000 Binary files a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Data.db ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Data.db b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Data.db deleted file mode 100644 index 175a5b6..0000000 Binary files a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Digest.adler32 ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Digest.adler32 b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Digest.adler32 deleted file mode 100644 index ad624d2..0000000 --- a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Digest.adler32 +++ /dev/null @@ -1 +0,0 @@ -408097082 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Filter.db b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Filter.db deleted file mode 100644 index 00a88b4..0000000 Binary files a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Index.db ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Index.db b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Index.db deleted file mode 100644 index c3b42d8..0000000 Binary files a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Statistics.db b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Statistics.db deleted file mode 100644 index 056cf17..0000000 Binary files a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Summary.db b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Summary.db deleted file mode 100644 index 453753f..0000000 Binary files a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-TOC.txt b/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-TOC.txt deleted file mode 100644 index ceb1dab..0000000 --- a/test/data/invalid-legacy-sstables/Keyspace1/cf_with_duplicates_2_0/lb-1-big-TOC.txt +++ /dev/null @@ -1,8 +0,0 @@ -CompressionInfo.db -Digest.adler32 -TOC.txt -Filter.db -Data.db -Index.db -Statistics.db -Summary.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750790.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750790.log b/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750790.log deleted file mode 100644 index 3301331..0000000 Binary files a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750790.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750791.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750791.log b/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750791.log deleted file mode 100644 index 04314d6..0000000 Binary files a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750791.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750792.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750792.log b/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750792.log deleted file mode 100644 index a9af9e4..0000000 Binary files a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750792.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750793.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750793.log b/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750793.log deleted file mode 100644 index 3301331..0000000 Binary files a/test/data/legacy-commitlog/2.0/CommitLog-3-1431528750793.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.0/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.0/hash.txt b/test/data/legacy-commitlog/2.0/hash.txt deleted file mode 100644 index 4bbec02..0000000 --- a/test/data/legacy-commitlog/2.0/hash.txt +++ /dev/null @@ -1,3 +0,0 @@ -cfid = 4d331c44-f018-302b-91c2-2dcf94c4bfad -cells = 9724 -hash = -682777064 http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069529.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069529.log b/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069529.log deleted file mode 100644 index 60064ee..0000000 Binary files a/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069529.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069530.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069530.log b/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069530.log deleted file mode 100644 index fdf7071..0000000 Binary files a/test/data/legacy-commitlog/2.1/CommitLog-4-1431529069530.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.1/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.1/hash.txt b/test/data/legacy-commitlog/2.1/hash.txt deleted file mode 100644 index f05cf97..0000000 --- a/test/data/legacy-commitlog/2.1/hash.txt +++ /dev/null @@ -1,3 +0,0 @@ -cfid = 6c622920-f980-11e4-b8a0-e7d448d5e26d -cells = 5165 -hash = -1915888171 http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4-bitrot/CommitLog-5-1438186885380.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4-bitrot/CommitLog-5-1438186885380.log b/test/data/legacy-commitlog/2.2-lz4-bitrot/CommitLog-5-1438186885380.log deleted file mode 100644 index d248d59..0000000 Binary files a/test/data/legacy-commitlog/2.2-lz4-bitrot/CommitLog-5-1438186885380.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4-bitrot/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4-bitrot/hash.txt b/test/data/legacy-commitlog/2.2-lz4-bitrot/hash.txt deleted file mode 100644 index c4d8fe7..0000000 --- a/test/data/legacy-commitlog/2.2-lz4-bitrot/hash.txt +++ /dev/null @@ -1,6 +0,0 @@ -#CommitLog bitrot test, version 2.2.0-SNAPSHOT -#This is a copy of 2.2-lz4 with some overwritten bytes. -#Replaying this should result in an error which can be overridden. -cells=6051 -hash=-170208326 -cfid=dc32ce20-360d-11e5-826c-afadad37221d http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4-bitrot2/CommitLog-5-1438186885380.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4-bitrot2/CommitLog-5-1438186885380.log b/test/data/legacy-commitlog/2.2-lz4-bitrot2/CommitLog-5-1438186885380.log deleted file mode 100644 index 083d65c..0000000 Binary files a/test/data/legacy-commitlog/2.2-lz4-bitrot2/CommitLog-5-1438186885380.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4-bitrot2/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4-bitrot2/hash.txt b/test/data/legacy-commitlog/2.2-lz4-bitrot2/hash.txt deleted file mode 100644 index c49dda0..0000000 --- a/test/data/legacy-commitlog/2.2-lz4-bitrot2/hash.txt +++ /dev/null @@ -1,6 +0,0 @@ -#CommitLog upgrade test, version 2.2.0-SNAPSHOT -#This is a copy of 2.2-lz4 with some overwritten bytes. -#Replaying this should result in an error which can be overridden. -cells=6037 -hash=-1312748407 -cfid=dc32ce20-360d-11e5-826c-afadad37221d http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4-truncated/CommitLog-5-1438186885380.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4-truncated/CommitLog-5-1438186885380.log b/test/data/legacy-commitlog/2.2-lz4-truncated/CommitLog-5-1438186885380.log deleted file mode 100644 index 939d408..0000000 Binary files a/test/data/legacy-commitlog/2.2-lz4-truncated/CommitLog-5-1438186885380.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4-truncated/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4-truncated/hash.txt b/test/data/legacy-commitlog/2.2-lz4-truncated/hash.txt deleted file mode 100644 index ce7f600..0000000 --- a/test/data/legacy-commitlog/2.2-lz4-truncated/hash.txt +++ /dev/null @@ -1,5 +0,0 @@ -#Truncated CommitLog test. -#This is a copy of 2.2-lz4 with the last 50 bytes deleted. -cells=6037 -hash=-889057729 -cfid=dc32ce20-360d-11e5-826c-afadad37221d http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885380.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885380.log b/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885380.log deleted file mode 100644 index b98304a..0000000 Binary files a/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885380.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885381.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885381.log b/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885381.log deleted file mode 100644 index adac94f..0000000 Binary files a/test/data/legacy-commitlog/2.2-lz4/CommitLog-5-1438186885381.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-lz4/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-lz4/hash.txt b/test/data/legacy-commitlog/2.2-lz4/hash.txt deleted file mode 100644 index 20aa6e5..0000000 --- a/test/data/legacy-commitlog/2.2-lz4/hash.txt +++ /dev/null @@ -1,5 +0,0 @@ -#CommitLog upgrade test, version 2.2.0-SNAPSHOT -#Wed Jul 29 19:21:31 EEST 2015 -cells=6052 -hash=1274136076 -cfid=dc32ce20-360d-11e5-826c-afadad37221d http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915514.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915514.log b/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915514.log deleted file mode 100644 index e69dfb7..0000000 Binary files a/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915514.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915515.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915515.log b/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915515.log deleted file mode 100644 index 3e06675..0000000 Binary files a/test/data/legacy-commitlog/2.2-snappy/CommitLog-5-1438186915515.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2-snappy/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2-snappy/hash.txt b/test/data/legacy-commitlog/2.2-snappy/hash.txt deleted file mode 100644 index f3dd72e..0000000 --- a/test/data/legacy-commitlog/2.2-snappy/hash.txt +++ /dev/null @@ -1,5 +0,0 @@ -#CommitLog upgrade test, version 2.2.0-SNAPSHOT -#Wed Jul 29 19:22:01 EEST 2015 -cells=6051 -hash=881633109 -cfid=ee2fe860-360d-11e5-951c-afadad37221d http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815314.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815314.log b/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815314.log deleted file mode 100644 index 5032519..0000000 Binary files a/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815314.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815315.log ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815315.log b/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815315.log deleted file mode 100644 index 34a02fe..0000000 Binary files a/test/data/legacy-commitlog/2.2/CommitLog-5-1438186815315.log and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-commitlog/2.2/hash.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-commitlog/2.2/hash.txt b/test/data/legacy-commitlog/2.2/hash.txt deleted file mode 100644 index 64f9dbb..0000000 --- a/test/data/legacy-commitlog/2.2/hash.txt +++ /dev/null @@ -1,5 +0,0 @@ -#CommitLog upgrade test, version 2.2.0-SNAPSHOT -#Wed Jul 29 19:20:21 EEST 2015 -cells=6366 -hash=-802535821 -cfid=b28a7000-360d-11e5-ae92-afadad37221d http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-CRC.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-CRC.db b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-CRC.db deleted file mode 100644 index 0b6dab4..0000000 Binary files a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-CRC.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Data.db b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Data.db deleted file mode 100644 index 7d9407e..0000000 Binary files a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Digest.sha1 ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Digest.sha1 b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Digest.sha1 deleted file mode 100644 index 963bd9b..0000000 --- a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Digest.sha1 +++ /dev/null @@ -1 +0,0 @@ -4a9f1896a599e4b3ff5d19600901de1a0b851bc1 Keyspace1-Standard1-jb-0-Data.db \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Filter.db b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Filter.db deleted file mode 100644 index a3a807c..0000000 Binary files a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Index.db b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Index.db deleted file mode 100644 index ee9f5fb..0000000 Binary files a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Statistics.db b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Statistics.db deleted file mode 100644 index daec1c3..0000000 Binary files a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Summary.db b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Summary.db deleted file mode 100644 index 1fbe040..0000000 Binary files a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-TOC.txt b/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-TOC.txt deleted file mode 100644 index d3aa557..0000000 --- a/test/data/legacy-sstables/jb/Keyspace1/Keyspace1-Standard1-jb-0-TOC.txt +++ /dev/null @@ -1,8 +0,0 @@ -Index.db -TOC.txt -Summary.db -Filter.db -Statistics.db -Data.db -CRC.db -Digest.sha1 http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-CompressionInfo.db deleted file mode 100644 index 6d49922..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Data.db deleted file mode 100644 index 326498b..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Index.db deleted file mode 100644 index 44b89c4..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Statistics.db deleted file mode 100644 index a9a404a..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Summary.db deleted file mode 100644 index 266c494..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-TOC.txt deleted file mode 100644 index abc3147..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust/legacy_tables-legacy_jb_clust-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -CompressionInfo.db -Statistics.db -Filter.db -Data.db -TOC.txt -Index.db -Summary.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-CompressionInfo.db deleted file mode 100644 index 5eddda7..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Data.db deleted file mode 100644 index 61ef270..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Index.db deleted file mode 100644 index 9e18f8e..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Statistics.db deleted file mode 100644 index ab83acc..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Summary.db deleted file mode 100644 index 896a529..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-TOC.txt deleted file mode 100644 index b67360a..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_compact/legacy_tables-legacy_jb_clust_compact-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -Data.db -CompressionInfo.db -Index.db -Summary.db -TOC.txt -Statistics.db -Filter.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-CompressionInfo.db deleted file mode 100644 index fe2e257..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Data.db deleted file mode 100644 index 12c8fdc..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Index.db deleted file mode 100644 index 51ddf91..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Statistics.db deleted file mode 100644 index a5eff40..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Summary.db deleted file mode 100644 index 750a780..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-TOC.txt deleted file mode 100644 index abc3147..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter/legacy_tables-legacy_jb_clust_counter-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -CompressionInfo.db -Statistics.db -Filter.db -Data.db -TOC.txt -Index.db -Summary.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-CompressionInfo.db deleted file mode 100644 index 34d459d..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Data.db deleted file mode 100644 index b511d30..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Index.db deleted file mode 100644 index 10df1e8..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Statistics.db deleted file mode 100644 index aa3c757..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Summary.db deleted file mode 100644 index 896a529..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-TOC.txt deleted file mode 100644 index b67360a..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_clust_counter_compact/legacy_tables-legacy_jb_clust_counter_compact-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -Data.db -CompressionInfo.db -Index.db -Summary.db -TOC.txt -Statistics.db -Filter.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-CompressionInfo.db deleted file mode 100644 index c80e64c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Data.db deleted file mode 100644 index 401fe93..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Index.db deleted file mode 100644 index f0717e0..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Statistics.db deleted file mode 100644 index a2bcfaf..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Summary.db deleted file mode 100644 index af5e781..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-TOC.txt deleted file mode 100644 index abc3147..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple/legacy_tables-legacy_jb_simple-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -CompressionInfo.db -Statistics.db -Filter.db -Data.db -TOC.txt -Index.db -Summary.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-CompressionInfo.db deleted file mode 100644 index d530b73..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Data.db deleted file mode 100644 index c7e8586..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Index.db deleted file mode 100644 index d2ec218..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Statistics.db deleted file mode 100644 index 792e733..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Summary.db deleted file mode 100644 index af5e781..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-TOC.txt deleted file mode 100644 index b67360a..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_compact/legacy_tables-legacy_jb_simple_compact-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -Data.db -CompressionInfo.db -Index.db -Summary.db -TOC.txt -Statistics.db -Filter.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-CompressionInfo.db deleted file mode 100644 index 9c3416e..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Data.db deleted file mode 100644 index b72f790..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Index.db deleted file mode 100644 index 932936c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Statistics.db deleted file mode 100644 index 6baf1de..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Summary.db deleted file mode 100644 index af5e781..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-TOC.txt deleted file mode 100644 index abc3147..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter/legacy_tables-legacy_jb_simple_counter-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -CompressionInfo.db -Statistics.db -Filter.db -Data.db -TOC.txt -Index.db -Summary.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-CompressionInfo.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-CompressionInfo.db deleted file mode 100644 index 01c5478..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Data.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Data.db deleted file mode 100644 index f545b04..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Filter.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Index.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Index.db deleted file mode 100644 index 48c153c..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Statistics.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Statistics.db deleted file mode 100644 index 8657050..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Summary.db b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Summary.db deleted file mode 100644 index af5e781..0000000 Binary files a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-TOC.txt b/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-TOC.txt deleted file mode 100644 index b67360a..0000000 --- a/test/data/legacy-sstables/jb/legacy_tables/legacy_jb_simple_counter_compact/legacy_tables-legacy_jb_simple_counter_compact-jb-1-TOC.txt +++ /dev/null @@ -1,7 +0,0 @@ -Data.db -CompressionInfo.db -Index.db -Summary.db -TOC.txt -Statistics.db -Filter.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-CompressionInfo.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-CompressionInfo.db deleted file mode 100644 index 69a8355..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Data.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Data.db deleted file mode 100644 index 7acbf92..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Digest.sha1 ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Digest.sha1 b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Digest.sha1 deleted file mode 100644 index fef7106..0000000 --- a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Digest.sha1 +++ /dev/null @@ -1 +0,0 @@ -4293822635 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Filter.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Index.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Index.db deleted file mode 100644 index 44b89c4..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Statistics.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Statistics.db deleted file mode 100644 index 5f07da5..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Summary.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Summary.db deleted file mode 100644 index 35b5e22..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-Summary.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-TOC.txt ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-TOC.txt b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-TOC.txt deleted file mode 100644 index 7be41d8..0000000 --- a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust/legacy_tables-legacy_ka_clust-ka-1-TOC.txt +++ /dev/null @@ -1,8 +0,0 @@ -Index.db -Digest.sha1 -CompressionInfo.db -Data.db -Statistics.db -Summary.db -TOC.txt -Filter.db http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-CompressionInfo.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-CompressionInfo.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-CompressionInfo.db deleted file mode 100644 index 654094e..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-CompressionInfo.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Data.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Data.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Data.db deleted file mode 100644 index 4c87e07..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Data.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Digest.sha1 ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Digest.sha1 b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Digest.sha1 deleted file mode 100644 index 4690757..0000000 --- a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Digest.sha1 +++ /dev/null @@ -1 +0,0 @@ -1331331706 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Filter.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Filter.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Filter.db deleted file mode 100644 index c3cb27c..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Filter.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Index.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Index.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Index.db deleted file mode 100644 index 9e18f8e..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Index.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Statistics.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Statistics.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Statistics.db deleted file mode 100644 index ab55258..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Statistics.db and /dev/null differ http://git-wip-us.apache.org/repos/asf/cassandra/blob/4a246419/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Summary.db ---------------------------------------------------------------------- diff --git a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Summary.db b/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Summary.db deleted file mode 100644 index 774cbd1..0000000 Binary files a/test/data/legacy-sstables/ka/legacy_tables/legacy_ka_clust_compact/legacy_tables-legacy_ka_clust_compact-ka-1-Summary.db and /dev/null differ
