@@ -84,10 +84,6 @@ void TCommandDump::Config(TConfig& config) {
84
84
.DefaultValue (defaults.Ordered_ ).StoreTrue (&Ordered);
85
85
}
86
86
87
- void TCommandDump::Parse (TConfig& config) {
88
- TClientCommand::Parse (config);
89
- }
90
-
91
87
void TCommandDump::ExtractParams (TConfig& config) {
92
88
TClientCommand::ExtractParams (config);
93
89
AdjustPath (config);
@@ -199,8 +195,8 @@ void TCommandRestore::Config(TConfig& config) {
199
195
config.Opts ->MutuallyExclusive (" import-data" , " bulk-upsert" );
200
196
}
201
197
202
- void TCommandRestore::Parse (TConfig& config) {
203
- TClientCommand::Parse (config);
198
+ void TCommandRestore::ExtractParams (TConfig& config) {
199
+ TClientCommand::ExtractParams (config);
204
200
AdjustPath (config);
205
201
}
206
202
@@ -283,6 +279,10 @@ void TCommandCopy::Parse(TConfig& config) {
283
279
if (Items.empty ()) {
284
280
throw TMisuseException () << " At least one item should be provided" ;
285
281
}
282
+ }
283
+
284
+ void TCommandCopy::ExtractParams (TConfig& config) {
285
+ TClientCommand::ExtractParams (config);
286
286
287
287
for (auto & item : Items) {
288
288
NConsoleClient::AdjustPath (item.Source , config);
@@ -373,6 +373,10 @@ void TCommandRename::Parse(TConfig& config) {
373
373
if (Items.empty ()) {
374
374
throw TMisuseException () << " At least one item should be provided" ;
375
375
}
376
+ }
377
+
378
+ void TCommandRename::ExtractParams (TConfig& config) {
379
+ TClientCommand::ExtractParams (config);
376
380
377
381
for (auto & item : Items) {
378
382
NConsoleClient::AdjustPath (item.Source , config);
@@ -411,10 +415,6 @@ void TCommandPgConvert::Config(TConfig& config) {
411
415
config.Opts ->AddLongOption (" ignore-unsupported" , " Comment unsupported statements in result dump file if specified." ).StoreTrue (&IgnoreUnsupported);
412
416
}
413
417
414
- void TCommandPgConvert::Parse (TConfig& config) {
415
- TToolsCommand::Parse (config);
416
- }
417
-
418
418
int TCommandPgConvert::Run (TConfig& config) {
419
419
Y_UNUSED (config);
420
420
TPgDumpParser parser (Cout, IgnoreUnsupported);
0 commit comments