HBASE-2582 TestTableSchemaModel not passing after commit of blooms
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@946512 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
70b7e2649e
commit
a309d26e8c
|
@ -345,7 +345,7 @@ Release 0.21.0 - Unreleased
|
|||
binary bytes (Benoît Sigoure via Stack)
|
||||
HBASE-2576 TestHRegion.testDelete_mixed() failing on hudson
|
||||
HBASE-2581 Bloom commit broke some tests... fix
|
||||
|
||||
HBASE-2582 TestTableSchemaModel not passing after commit of blooms
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
|
@ -33,7 +33,7 @@ public class TestColumnSchemaModel extends TestCase {
|
|||
protected static final String COLUMN_NAME = "testcolumn";
|
||||
protected static final boolean BLOCKCACHE = true;
|
||||
protected static final int BLOCKSIZE = 16384;
|
||||
protected static final String BLOOMFILTER = "none";
|
||||
protected static final String BLOOMFILTER = "NONE";
|
||||
protected static final String COMPRESSION = "GZ";
|
||||
protected static final boolean IN_MEMORY = false;
|
||||
protected static final int TTL = 86400;
|
||||
|
@ -42,7 +42,7 @@ public class TestColumnSchemaModel extends TestCase {
|
|||
protected static final String AS_XML =
|
||||
"<ColumnSchema name=\"testcolumn\"" +
|
||||
" BLOCKSIZE=\"16384\"" +
|
||||
" BLOOMFILTER=\"none\"" +
|
||||
" BLOOMFILTER=\"NONE\"" +
|
||||
" BLOCKCACHE=\"true\"" +
|
||||
" COMPRESSION=\"GZ\"" +
|
||||
" VERSIONS=\"1\"" +
|
||||
|
|
|
@ -49,18 +49,17 @@ public class TestTableSchemaModel extends TestCase {
|
|||
|
||||
private static final String AS_PB =
|
||||
"Cgl0ZXN0VGFibGUSEAoHSVNfTUVUQRIFZmFsc2USEAoHSVNfUk9PVBIFZmFsc2USEQoIUkVBRE9O" +
|
||||
"TFkSBWZhbHNlEhIKCUlOX01FTU9SWRIFZmFsc2UamAEKCnRlc3Rjb2x1bW4SEgoJQkxPQ0tTSVpF" +
|
||||
"EgUxNjM4NBIUCgtCTE9PTUZJTFRFUhIFZmFsc2USEgoKQkxPQ0tDQUNIRRIEdHJ1ZRIRCgtDT01Q" +
|
||||
"UkVTU0lPThICZ3oSDQoIVkVSU0lPTlMSATESDAoDVFRMEgU4NjQwMBISCglJTl9NRU1PUlkSBWZh" +
|
||||
"bHNlGICjBSABKgJneiAAKAA=";
|
||||
"TFkSBWZhbHNlGpcBCgp0ZXN0Y29sdW1uEhIKCUJMT0NLU0laRRIFMTYzODQSEwoLQkxPT01GSUxU" +
|
||||
"RVISBE5PTkUSEgoKQkxPQ0tDQUNIRRIEdHJ1ZRIRCgtDT01QUkVTU0lPThICR1oSDQoIVkVSU0lP" +
|
||||
"TlMSATESDAoDVFRMEgU4NjQwMBISCglJTl9NRU1PUlkSBWZhbHNlGICjBSABKgJHWigA";
|
||||
|
||||
private JAXBContext context;
|
||||
|
||||
public TestTableSchemaModel() throws JAXBException {
|
||||
super();
|
||||
context = JAXBContext.newInstance(
|
||||
ColumnSchemaModel.class,
|
||||
TableSchemaModel.class);
|
||||
ColumnSchemaModel.class,
|
||||
TableSchemaModel.class);
|
||||
}
|
||||
|
||||
public static TableSchemaModel buildTestModel() {
|
||||
|
|
Loading…
Reference in New Issue