Github user ebortnik commented on a diff in the pull request:
https://github.com/apache/incubator-omid/pull/12#discussion_r129018088
--- Diff:
hbase-client/src/main/java/org/apache/omid/transaction/TTable.java ---
@@ -351,12 +353,15 @@ public ResultScanner getScanner(Transaction tx, Scan
scan) throws IOException {
boolean snapshotValueFound = false;
Cell oldestCell = null;
for (Cell cell : columnCells) {
- if (isCellInSnapshot(cell, transaction, commitCache)) {
+ if (isCellInTransaction(cell, transaction, commitCache) ||
isCellInSnapshot(cell, transaction, commitCache)) {
--- End diff --
Long line, makes sense to break
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---