1
0
Fork 0

Fix deserialisation of AqlItemBlocks (ranges).

This commit is contained in:
Max Neunhoeffer 2014-10-29 15:41:21 +01:00
parent 7675012818
commit ebf8936cd3
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ AqlItemBlock::AqlItemBlock (Json const& json) {
Json lowBound(data.at(static_cast<int>(posInData++)));
Json highBound(data.at(static_cast<int>(posInData++)));
int64_t low = JsonHelper::getNumericValue<int64_t>(lowBound.json(), 0);
int64_t high = JsonHelper::getNumericValue<int64_t>(lowBound.json(), 0);
int64_t high = JsonHelper::getNumericValue<int64_t>(highBound.json(), 0);
AqlValue a(low, high);
try {
setValue(i, column, a);