File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
ydb/public/lib/ydb_cli/common Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class TCsvToYdbConverter {
46
46
}
47
47
return static_cast <T>(value);
48
48
} catch (std::exception& e) {
49
- throw TCsvParseException () << " Expected " << Parser.GetPrimitive () << " value, recieved : \" " << token << " \" ." ;
49
+ throw TCsvParseException () << " Expected " << Parser.GetPrimitive () << " value, received : \" " << token << " \" ." ;
50
50
}
51
51
}
52
52
@@ -276,15 +276,15 @@ class TCsvToYdbConverter {
276
276
if (token == " false" ) {
277
277
return false ;
278
278
}
279
- throw TCsvParseException () << " Expected bool value: \" true\" or \" false\" , recieved : \" " << token << " \" ." ;
279
+ throw TCsvParseException () << " Expected bool value: \" true\" or \" false\" , received : \" " << token << " \" ." ;
280
280
}
281
281
282
282
void EnsureNull (TStringBuf token) const {
283
283
if (!NullValue) {
284
284
throw TCsvParseException () << " Expected null value instead of \" " << token << " \" , but null value is not set." ;
285
285
}
286
286
if (token != NullValue) {
287
- throw TCsvParseException () << " Expected null value: \" " << NullValue << " \" , recieved : \" " << token << " \" ." ;
287
+ throw TCsvParseException () << " Expected null value: \" " << NullValue << " \" , received : \" " << token << " \" ." ;
288
288
}
289
289
}
290
290
@@ -446,4 +446,4 @@ TType TCsvParser::GetColumnsType() const {
446
446
}
447
447
448
448
}
449
- }
449
+ }
You can’t perform that action at this time.
0 commit comments