[
https://issues.apache.org/jira/browse/HBASE-13779?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14559489#comment-14559489
]
Matteo Bertozzi commented on HBASE-13779:
-----------------------------------------
I think these are the only places where we don't consider Get and Scan
immutable inside HTable
{code}
public Result get(final Get get) throws IOException {
if (get.getConsistency() == null){
get.setConsistency(defaultConsistency);
}
...
public boolean exists(final Get get) throws IOException {
get.setCheckExistenceOnly(true);
Result r = get(get);
...
public boolean[] existsAll(final List<Get> gets) throws IOException {
...
for (Get g: gets){
g.setCheckExistenceOnly(true);
}
...
public ResultScanner getScanner(final Scan scan) throws IOException {
...
if (scan.getCaching() <= 0) {
scan.setCaching(scannerCaching);
}
if (scan.getMaxResultSize() <= 0) {
scan.setMaxResultSize(scannerMaxResultSize);
}
...
{code}
> Calling table.exists() before table.get() end up with an empty Result
> ---------------------------------------------------------------------
>
> Key: HBASE-13779
> URL: https://issues.apache.org/jira/browse/HBASE-13779
> Project: HBase
> Issue Type: Bug
> Affects Versions: 2.0.0, 1.1.0, 1.2.0, 0.98.12.1
> Reporter: Matteo Bertozzi
> Assignee: Matteo Bertozzi
> Attachments: HBASE-13779-test.patch
>
>
> If we call exists() before a get() the result returned by the get() will be
> empty.
> simple test to verify it:
> {code}
> Put put = new Put(ROW);
> put.add(FAMILY, QUALIFIER, VALUE);
> table.put(put);
> Get get = new Get(ROW);
> boolean exist = table.exists(get);
> exist = table.exists(get);
> assertEquals(true, exist);
> Result result = table.get(get);
> // this will fail saying that the Result is empty
> // if we remove the exist everything is fine
> assertEquals(false, result.isEmpty());
> assertTrue(Bytes.equals(VALUE, result.getValue(FAMILY, QUALIFIER)));
> {code}
> if we use a different Get instance for the get everything works
> {code}
> ...
> get = new Get(ROW);
> Result result = table.get(get);
> assertEquals(false, result.isEmpty());
> {code}
> HTable.exists() set the checkExistenceOnly flag in the Get so that object is
> not reusable by a table.get()
> {code}
> public boolean exists(final Get get) throws IOException {
> get.setCheckExistenceOnly(true);
> Result r = get(get);
> assert r.getExists() != null;
> return r.getExists();
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)