mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: Server: Fixes. [#METR-17276]
This commit is contained in:
parent
b3bcc4f668
commit
4da092418e
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user