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

This commit is contained in:
Alexey Arno 2015-08-07 20:35:34 +03:00
parent 1bf22c463b
commit ed2ec39899
2 changed files with 2 additions and 2 deletions

View File

@ -803,7 +803,7 @@ public:
{
Cell x;
x.read(rb);
insert(x.getValue());
insert(x);
}
}
@ -827,7 +827,7 @@ public:
Cell x;
DB::assertString(",", rb);
x.readText(rb);
insert(x.getValue());
insert(x);
}
}