@@ -311,8 +311,8 @@ int TCommandImportFromCsv::Run(TConfig& config) {
311
311
settings.Delimiter (Delimiter);
312
312
}
313
313
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));
316
316
317
317
return EXIT_SUCCESS;
318
318
}
@@ -341,8 +341,8 @@ int TCommandImportFromJson::Run(TConfig& config) {
341
341
settings.BytesPerRequest (NYdb::SizeFromString (BytesPerRequest));
342
342
settings.Threads (Threads);
343
343
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));
346
346
347
347
return EXIT_SUCCESS;
348
348
}
@@ -360,8 +360,8 @@ int TCommandImportFromParquet::Run(TConfig& config) {
360
360
settings.BytesPerRequest (NYdb::SizeFromString (BytesPerRequest));
361
361
settings.Threads (Threads);
362
362
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));
365
365
366
366
return EXIT_SUCCESS;
367
367
}
0 commit comments