@@ -311,8 +311,8 @@ int TCommandImportFromCsv::Run(TConfig& config) {
311311 settings.Delimiter (Delimiter);
312312 }
313313
314- TImportFileClient client (CreateDriver (config), config);
315- ThrowOnError (client.Import (FilePaths, Path, settings ));
314+ TImportFileClient client (CreateDriver (config), config, settings );
315+ ThrowOnError (client.Import (FilePaths, Path));
316316
317317 return EXIT_SUCCESS;
318318}
@@ -341,8 +341,8 @@ int TCommandImportFromJson::Run(TConfig& config) {
341341 settings.BytesPerRequest (NYdb::SizeFromString (BytesPerRequest));
342342 settings.Threads (Threads);
343343
344- TImportFileClient client (CreateDriver (config), config);
345- ThrowOnError (client.Import (FilePaths, Path, settings ));
344+ TImportFileClient client (CreateDriver (config), config, settings );
345+ ThrowOnError (client.Import (FilePaths, Path));
346346
347347 return EXIT_SUCCESS;
348348}
@@ -360,8 +360,8 @@ int TCommandImportFromParquet::Run(TConfig& config) {
360360 settings.BytesPerRequest (NYdb::SizeFromString (BytesPerRequest));
361361 settings.Threads (Threads);
362362
363- TImportFileClient client (CreateDriver (config), config);
364- ThrowOnError (client.Import (FilePaths, Path, settings ));
363+ TImportFileClient client (CreateDriver (config), config, settings );
364+ ThrowOnError (client.Import (FilePaths, Path));
365365
366366 return EXIT_SUCCESS;
367367}
0 commit comments