Java Code Examples for org.apache.hadoop.hbase.regionserver.ScanType#USER_SCAN

The following examples show how to use org.apache.hadoop.hbase.regionserver.ScanType#USER_SCAN . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 2
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 3
Source File: TransactionVisibilityFilter.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new {@link org.apache.hadoop.hbase.filter.Filter} for returning data only from visible transactions.
 *
 * @param tx the current transaction to apply.  Only data visible to this transaction will be returned.
 * @param ttlByFamily map of time-to-live (TTL) (in milliseconds) by column family name
 * @param allowEmptyValues if {@code true} cells with empty {@code byte[]} values will be returned, if {@code false}
 *                         these will be interpreted as "delete" markers and the column will be filtered out
 * @param scanType the type of scan operation being performed
 * @param cellFilter if non-null, this filter will be applied to all cells visible to the current transaction, by
 *                   calling {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)}.  If null, then
 *                   {@link Filter.ReturnCode#INCLUDE_AND_NEXT_COL} will be returned instead.
 */
 public TransactionVisibilityFilter(Transaction tx, Map<byte[], Long> ttlByFamily, boolean allowEmptyValues,
                             ScanType scanType, @Nullable Filter cellFilter) {
  this.tx = tx;
  this.oldestTsByFamily = Maps.newTreeMap();
  for (Map.Entry<byte[], Long> ttlEntry : ttlByFamily.entrySet()) {
    long familyTTL = ttlEntry.getValue();
    oldestTsByFamily.put(new ImmutableBytesWritable(ttlEntry.getKey()),
                         familyTTL <= 0 ? 0 : tx.getVisibilityUpperBound() - familyTTL * TxConstants.MAX_TX_PER_MS);
  }
  this.allowEmptyValues = allowEmptyValues;
  this.clearDeletes =
    scanType == ScanType.COMPACT_DROP_DELETES ||
      (scanType == ScanType.USER_SCAN && tx.getVisibilityLevel() != Transaction.VisibilityLevel.SNAPSHOT_ALL);
  this.cellFilter = cellFilter;
}
 
Example 4
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 5
Source File: TransactionVisibilityFilter.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new {@link org.apache.hadoop.hbase.filter.Filter} for returning data only from visible transactions.
 *
 * @param tx the current transaction to apply.  Only data visible to this transaction will be returned.
 * @param ttlByFamily map of time-to-live (TTL) (in milliseconds) by column family name
 * @param allowEmptyValues if {@code true} cells with empty {@code byte[]} values will be returned, if {@code false}
 *                         these will be interpreted as "delete" markers and the column will be filtered out
 * @param scanType the type of scan operation being performed
 * @param cellFilter if non-null, this filter will be applied to all cells visible to the current transaction, by
 *                   calling {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)}.  If null, then
 *                   {@link Filter.ReturnCode#INCLUDE_AND_NEXT_COL} will be returned instead.
 */
public TransactionVisibilityFilter(Transaction tx, Map<byte[], Long> ttlByFamily, boolean allowEmptyValues,
                            ScanType scanType, @Nullable Filter cellFilter) {
  this.tx = tx;
  this.oldestTsByFamily = Maps.newTreeMap();
  for (Map.Entry<byte[], Long> ttlEntry : ttlByFamily.entrySet()) {
    long familyTTL = ttlEntry.getValue();
    oldestTsByFamily.put(new ImmutableBytesWritable(ttlEntry.getKey()),
                         familyTTL <= 0 ? 0 : tx.getVisibilityUpperBound() - familyTTL * TxConstants.MAX_TX_PER_MS);
  }
  this.allowEmptyValues = allowEmptyValues;
  this.clearDeletes =
    scanType == ScanType.COMPACT_DROP_DELETES ||
      (scanType == ScanType.USER_SCAN && tx.getVisibilityLevel() != Transaction.VisibilityLevel.SNAPSHOT_ALL);
  this.cellFilter = cellFilter;
}
 
Example 6
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 7
Source File: TransactionVisibilityFilter.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new {@link org.apache.hadoop.hbase.filter.Filter} for returning data only from visible transactions.
 *
 * @param tx the current transaction to apply.  Only data visible to this transaction will be returned.
 * @param ttlByFamily map of time-to-live (TTL) (in milliseconds) by column family name
 * @param allowEmptyValues if {@code true} cells with empty {@code byte[]} values will be returned, if {@code false}
 *                         these will be interpreted as "delete" markers and the column will be filtered out
 * @param scanType the type of scan operation being performed
 * @param cellFilter if non-null, this filter will be applied to all cells visible to the current transaction, by
 *                   calling {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)}.  If null, then
 *                   {@link Filter.ReturnCode#INCLUDE_AND_NEXT_COL} will be returned instead.
 */
public TransactionVisibilityFilter(Transaction tx, Map<byte[], Long> ttlByFamily, boolean allowEmptyValues,
                            ScanType scanType, @Nullable Filter cellFilter) {
  this.tx = tx;
  this.oldestTsByFamily = Maps.newTreeMap();
  for (Map.Entry<byte[], Long> ttlEntry : ttlByFamily.entrySet()) {
    long familyTTL = ttlEntry.getValue();
    oldestTsByFamily.put(new ImmutableBytesWritable(ttlEntry.getKey()),
                         familyTTL <= 0 ? 0 : tx.getVisibilityUpperBound() - familyTTL * TxConstants.MAX_TX_PER_MS);
  }
  this.allowEmptyValues = allowEmptyValues;
  this.clearDeletes =
    scanType == ScanType.COMPACT_DROP_DELETES ||
      (scanType == ScanType.USER_SCAN && tx.getVisibilityLevel() != Transaction.VisibilityLevel.SNAPSHOT_ALL);
  this.cellFilter = cellFilter;
}
 
Example 8
Source File: TransactionVisibilityFilter.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new {@link org.apache.hadoop.hbase.filter.Filter} for returning data only from visible transactions.
 *
 * @param tx the current transaction to apply.  Only data visible to this transaction will be returned.
 * @param ttlByFamily map of time-to-live (TTL) (in milliseconds) by column family name
 * @param allowEmptyValues if {@code true} cells with empty {@code byte[]} values will be returned, if {@code false}
 *                         these will be interpreted as "delete" markers and the column will be filtered out
 * @param scanType the type of scan operation being performed
 * @param cellFilter if non-null, this filter will be applied to all cells visible to the current transaction, by
 *                   calling {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)}.  If null, then
 *                   {@link Filter.ReturnCode#INCLUDE_AND_NEXT_COL} will be returned instead.
 */
 public TransactionVisibilityFilter(Transaction tx, Map<byte[], Long> ttlByFamily, boolean allowEmptyValues,
                             ScanType scanType, @Nullable Filter cellFilter) {
  this.tx = tx;
  this.oldestTsByFamily = Maps.newTreeMap();
  for (Map.Entry<byte[], Long> ttlEntry : ttlByFamily.entrySet()) {
    long familyTTL = ttlEntry.getValue();
    oldestTsByFamily.put(new ImmutableBytesWritable(ttlEntry.getKey()),
                         familyTTL <= 0 ? 0 : tx.getVisibilityUpperBound() - familyTTL * TxConstants.MAX_TX_PER_MS);
  }
  this.allowEmptyValues = allowEmptyValues;
  this.clearDeletes =
    scanType == ScanType.COMPACT_DROP_DELETES ||
      (scanType == ScanType.USER_SCAN && tx.getVisibilityLevel() != Transaction.VisibilityLevel.SNAPSHOT_ALL);
  this.cellFilter = cellFilter;
}
 
Example 9
Source File: TransactionVisibilityFilter.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new {@link org.apache.hadoop.hbase.filter.Filter} for returning data only from visible transactions.
 *
 * @param tx the current transaction to apply.  Only data visible to this transaction will be returned.
 * @param ttlByFamily map of time-to-live (TTL) (in milliseconds) by column family name
 * @param allowEmptyValues if {@code true} cells with empty {@code byte[]} values will be returned, if {@code false}
 *                         these will be interpreted as "delete" markers and the column will be filtered out
 * @param scanType the type of scan operation being performed
 * @param cellFilter if non-null, this filter will be applied to all cells visible to the current transaction, by
 *                   calling {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)}.  If null, then
 *                   {@link Filter.ReturnCode#INCLUDE_AND_NEXT_COL} will be returned instead.
 */
 public TransactionVisibilityFilter(Transaction tx, Map<byte[], Long> ttlByFamily, boolean allowEmptyValues,
                             ScanType scanType, @Nullable Filter cellFilter) {
  this.tx = tx;
  this.oldestTsByFamily = Maps.newTreeMap();
  for (Map.Entry<byte[], Long> ttlEntry : ttlByFamily.entrySet()) {
    long familyTTL = ttlEntry.getValue();
    oldestTsByFamily.put(new ImmutableBytesWritable(ttlEntry.getKey()),
                         familyTTL <= 0 ? 0 : tx.getVisibilityUpperBound() - familyTTL * TxConstants.MAX_TX_PER_MS);
  }
  this.allowEmptyValues = allowEmptyValues;
  this.clearDeletes =
    scanType == ScanType.COMPACT_DROP_DELETES ||
      (scanType == ScanType.USER_SCAN && tx.getVisibilityLevel() != Transaction.VisibilityLevel.SNAPSHOT_ALL);
  this.cellFilter = cellFilter;
}
 
Example 10
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 11
Source File: TransactionVisibilityFilter.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new {@link org.apache.hadoop.hbase.filter.Filter} for returning data only from visible transactions.
 *
 * @param tx the current transaction to apply.  Only data visible to this transaction will be returned.
 * @param ttlByFamily map of time-to-live (TTL) (in milliseconds) by column family name
 * @param allowEmptyValues if {@code true} cells with empty {@code byte[]} values will be returned, if {@code false}
 *                         these will be interpreted as "delete" markers and the column will be filtered out
 * @param scanType the type of scan operation being performed
 * @param cellFilter if non-null, this filter will be applied to all cells visible to the current transaction, by
 *                   calling {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)}.  If null, then
 *                   {@link Filter.ReturnCode#INCLUDE_AND_NEXT_COL} will be returned instead.
 */
 public TransactionVisibilityFilter(Transaction tx, Map<byte[], Long> ttlByFamily, boolean allowEmptyValues,
                             ScanType scanType, @Nullable Filter cellFilter) {
  this.tx = tx;
  this.oldestTsByFamily = Maps.newTreeMap();
  for (Map.Entry<byte[], Long> ttlEntry : ttlByFamily.entrySet()) {
    long familyTTL = ttlEntry.getValue();
    oldestTsByFamily.put(new ImmutableBytesWritable(ttlEntry.getKey()),
                         familyTTL <= 0 ? 0 : tx.getVisibilityUpperBound() - familyTTL * TxConstants.MAX_TX_PER_MS);
  }
  this.allowEmptyValues = allowEmptyValues;
  this.clearDeletes =
    scanType == ScanType.COMPACT_DROP_DELETES ||
      (scanType == ScanType.USER_SCAN && tx.getVisibilityLevel() != Transaction.VisibilityLevel.SNAPSHOT_ALL);
  this.cellFilter = cellFilter;
}
 
Example 12
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 13
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 6 votes vote down vote up
/**
 * Test filtering of KeyValues for in-progress and invalid transactions.
 * @throws Exception
 */
@Test
public void testFiltering() throws Exception {
  TxFilterFactory txFilterFactory = new TxFilterFactory() {
    @Override
    public Filter getTxFilter(Transaction tx, Map<byte[], Long> familyTTLs) {
      return new TransactionVisibilityFilter(tx, familyTTLs, false, ScanType.USER_SCAN);
    }
  };
  runFilteringTest(txFilterFactory,
                   ImmutableList.of(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.SKIP,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
                                    Filter.ReturnCode.INCLUDE_AND_NEXT_COL));
}
 
Example 14
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}
 
Example 15
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}
 
Example 16
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}
 
Example 17
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}
 
Example 18
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}
 
Example 19
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}
 
Example 20
Source File: TransactionVisibilityFilterTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
/**
 * Test filtering for TTL settings.
 * @throws Exception
 */
@Test
public void testTTLFiltering() throws Exception {
  Map<byte[], Long> ttls = Maps.newTreeMap(Bytes.BYTES_COMPARATOR);
  ttls.put(FAM, 10L);
  ttls.put(FAM2, 30L);
  ttls.put(FAM3, 0L);

  Transaction tx = txManager.startShort();
  long now = tx.getVisibilityUpperBound();
  Filter filter = new TransactionVisibilityFilter(tx, ttls, false, ScanType.USER_SCAN);
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 11 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 21 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM2, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 31 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", now - 1001 * TxConstants.MAX_TX_PER_MS)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row2", FAM, "val1", now - 1 * TxConstants.MAX_TX_PER_MS)));

  // Verify ttl for pre-existing, non-transactional data
  long preNow = now / TxConstants.MAX_TX_PER_MS;
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM, "val1", preNow - 11L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 9L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 10L)));
  assertEquals(Filter.ReturnCode.INCLUDE_AND_NEXT_COL,
               filter.filterKeyValue(newKeyValue("row1", FAM3, "val1", preNow - 1001L)));
}