Skip to content

Commit

Permalink
PHOENIX-1642 Make Phoenix Master Branch pointing to HBase1.0.0 - ADDE…
Browse files Browse the repository at this point in the history
…NDUM for HBASE-13109
  • Loading branch information
enis committed Mar 26, 2015
1 parent d70f389 commit ad2ad0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public boolean isSeeked() {
// Added for compatibility with HBASE-13109
// Once we drop support for older versions, add an @override annotation here
// and figure out how to get the next indexed key
public byte[] getNextIndexedKey() {
public Cell getNextIndexedKey() {
return null; // indicate that we cannot use the optimization
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public boolean seekToPreviousRow(Cell arg0) throws IOException {
// Added for compatibility with HBASE-13109
// Once we drop support for older versions, add an @override annotation here
// and figure out how to get the next indexed key
public byte[] getNextIndexedKey() {
public Cell getNextIndexedKey() {
return null; // indicate that we cannot use the optimization
}
}
}

0 comments on commit ad2ad0c

Please sign in to comment.