HBASE-3662 REST server does not respect client supplied max versions when creating scanner
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1082717 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1e07b8a396
commit
5997bc3ca5
@ -41,6 +41,8 @@ Release 0.91.0 - Unreleased
|
|||||||
HBASE-3515 [replication] ReplicationSource can miss a log after RS comes
|
HBASE-3515 [replication] ReplicationSource can miss a log after RS comes
|
||||||
out of GC
|
out of GC
|
||||||
HBASE-3665 tighten assertions for testBloomFilterSize
|
HBASE-3665 tighten assertions for testBloomFilterSize
|
||||||
|
HBASE-3662 REST server does not respect client supplied max versions when
|
||||||
|
creating scanner
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
||||||
|
@ -78,7 +78,8 @@ public class ScannerResource extends ResourceBase {
|
|||||||
}
|
}
|
||||||
byte[] endRow = model.hasEndRow() ? model.getEndRow() : null;
|
byte[] endRow = model.hasEndRow() ? model.getEndRow() : null;
|
||||||
RowSpec spec = new RowSpec(model.getStartRow(), endRow,
|
RowSpec spec = new RowSpec(model.getStartRow(), endRow,
|
||||||
model.getColumns(), model.getStartTime(), model.getEndTime(), 1);
|
model.getColumns(), model.getStartTime(), model.getEndTime(),
|
||||||
|
model.getMaxVersions());
|
||||||
try {
|
try {
|
||||||
Filter filter = ScannerResultGenerator.buildFilterFromModel(model);
|
Filter filter = ScannerResultGenerator.buildFilterFromModel(model);
|
||||||
String tableName = tableResource.getName();
|
String tableName = tableResource.getName();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user