dbms: Server: Fixes. [#METR-17276]

This commit is contained in:
Alexey Arno 2015-07-29 17:14:44 +03:00
parent b3bcc4f668
commit 4da092418e
2 changed files with 4 additions and 4 deletions

View File

@ -465,7 +465,7 @@ public:
if ((read_count == 0) || is_eof)
throw DB::Exception("No available data", DB::ErrorCodes::NO_AVAILABLE_DATA);
return Cell::getKey(cell.getValue());
return cell.getValue();
}
private:
@ -803,7 +803,7 @@ public:
{
Cell x;
x.read(rb);
insert(Cell::getKey(x.getValue()));
insert(x.getValue());
}
}
@ -827,7 +827,7 @@ public:
Cell x;
DB::assertString(",", rb);
x.readText(rb);
insert(Cell::getKey(x.getValue()));
insert(x.getValue());
}
}

View File

@ -105,7 +105,7 @@ public:
if ((read_count == 0) || is_eof)
throw DB::Exception("No available data", DB::ErrorCodes::NO_AVAILABLE_DATA);
return Cell::getKey(cell.getValue());
return cell.getValue();
}
private: