dbms: removed two wrong comments [#CONV-2944].

This commit is contained in:
Alexey Milovidov 2013-06-29 17:22:22 +00:00
parent 780e2e98c1
commit 63bdaa2636
2 changed files with 0 additions and 2 deletions

View File

@ -32,7 +32,6 @@ void DataTypeFixedString::deserializeBinary(Field & field, ReadBuffer & istr) co
field = String();
String & s = get<String &>(field);
s.resize(n);
/// непереносимо, но (действительно) быстрее
istr.readStrict(&s[0], n);
}

View File

@ -34,7 +34,6 @@ void DataTypeString::deserializeBinary(Field & field, ReadBuffer & istr) const
field = String();
String & s = get<String &>(field);
s.resize(size);
/// непереносимо, но (действительно) быстрее
istr.readStrict(&s[0], size);
}