hbase-hbck2/src/main/java/org/apache/hbase/HBCKMetaTableAccessor.java [228:235]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final String startRow = Bytes.toString(table.getName()) + ",,";
    final String stopRow = Bytes.toString(table.getName()) + " ,,";
    return scanner.scanMeta(conn,
      scan -> {
        scan.withStartRow(Bytes.toBytes(startRow));
        scan.withStopRow(Bytes.toBytes(stopRow));
      },
      r -> {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hbase-hbck2/src/main/java/org/apache/hbase/HBCKMetaTableAccessor.java [265:272]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final String startRow = Bytes.toString(table.getName()) + ",,";
    final String stopRow = Bytes.toString(table.getName()) + " ,,";
    return scanner.scanMeta(conn,
      scan -> {
        scan.withStartRow(Bytes.toBytes(startRow));
        scan.withStopRow(Bytes.toBytes(stopRow));
      },
      r -> {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



