Home
last modified time | relevance | path

Searched refs:DeleteFamily (Results 1 – 15 of 15) sorted by relevance

/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/regionserver/
H A DTestReplicationSink.java204 entries.add(createEntry(TABLE_NAME1, 1, KeyValue.Type.DeleteFamily, cells)); in testMixedDeletes()
226 entries.add(createEntry(TABLE_NAME1, 1, KeyValue.Type.DeleteFamily, cells)); in testApplyDeleteBeforePut()
254 } else if (type.getCode() == KeyValue.Type.DeleteFamily.getCode()) { in createEntry()
256 now, KeyValue.Type.DeleteFamily); in createEntry()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/
H A DVisibilityScanDeleteTracker.java77 if (type == KeyValue.Type.DeleteFamily.getCode()) { in add()
79 boolean hasVisTag = extractDeleteCellVisTags(delCell, KeyValue.Type.DeleteFamily); in add()
122 case DeleteFamily: in extractDeleteCellVisTags()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/
H A DScanDeleteTracker.java79 if (type == KeyValue.Type.DeleteFamily.getCode()) { in add()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/
H A DTestStoreScanner.java327 KeyValueTestUtil.create("R1", "cf", "a", 100, KeyValue.Type.DeleteFamily, "dont-care"), in testDeleteFamily()
485 KeyValue.Type.DeleteFamily), in testExpiredDeleteFamily()
518 now - 100, KeyValue.Type.DeleteFamily), // live in testDeleteMarkerLongevity()
520 now - 1000, KeyValue.Type.DeleteFamily), // expired in testDeleteMarkerLongevity()
H A DTestScanDeleteTracker.java63 Bytes.toBytes("qualifier"), timestamp, KeyValue.Type.DeleteFamily); in testDeletedBy_DeleteFamily()
H A DTestDefaultMemStore.java671 new KeyValue(row, fam, null, ts, KeyValue.Type.DeleteFamily, val); in testGetWithDeleteFamily()
733 KeyValue.Type.DeleteFamily, "dont-care"); in testRetainsDeleteFamily()
H A DTestStoreFile.java568 "col".getBytes(), now, KeyValue.Type.DeleteFamily, "value".getBytes()); in testDeleteFamilyBloomFilter()
/dports/databases/hbase/hbase-1.2.1/hbase-common/src/main/java/org/apache/hadoop/hbase/
H A DCellUtil.java493 && type <= Type.DeleteFamily.getCode();
504 return cell.getTypeByte() == Type.DeleteFamily.getCode();
525 return t == Type.DeleteColumn.getCode() || t == Type.DeleteFamily.getCode();
H A DKeyValueUtil.java410 Type.DeleteFamily); in createFirstDeleteFamilyOnRow()
H A DKeyValue.java232 DeleteFamily((byte)14), enumConstant
283 return Type.Delete.getCode() <= t && t <= Type.DeleteFamily.getCode(); in isDelete()
/dports/databases/hbase/hbase-1.2.1/hbase-client/src/main/java/org/apache/hadoop/hbase/client/
H A DDelete.java244 KeyValue kv = new KeyValue(row, family, null, timestamp, KeyValue.Type.DeleteFamily); in addFamily()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/
H A DAccessController.java754 && (cell.getTypeByte() == Type.DeleteFamily.getCode() in checkCoveringPermission()
846 || (KeyValue.Type.DeleteFamily.getCode() == type); in checkCoveringPermission()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/
H A DTestWALReplay.java815 edit.add(new KeyValue(rowName, Bytes.toBytes("c"), null, now, KeyValue.Type.DeleteFamily)); in testReplayEditsWrittenIntoWAL()
/dports/databases/hbase/hbase-1.2.1/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/
H A DProtobufUtil.java1502 case DeleteFamily: in toDeleteType()
1526 return KeyValue.Type.DeleteFamily; in fromDeleteType()
/dports/databases/hbase/hbase-1.2.1/src/main/asciidoc/_chapters/
H A Darchitecture.adoc1612 * keytype (e.g., Put, Delete, DeleteColumn, DeleteFamily)