Skip to content

Commit

Permalink
Add -lpf param in ExportData (#14956)
Browse files Browse the repository at this point in the history
Co-authored-by: 2b3c511 <[email protected]>
  • Loading branch information
2b3c511 and 2b3c511 authored Feb 28, 2025
1 parent 4d8e1cd commit b1ea8dd
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,15 @@ private static Options createSqlOptions() {
.build();
options.addOption(opTimeZone);

Option opLinesPerFile =
Option.builder(LINES_PER_FILE_ARGS)
.longOpt(LINES_PER_FILE_NAME)
.argName(LINES_PER_FILE_NAME)
.hasArg()
.desc("Lines per dump file.(optional)")
.build();
options.addOption(opLinesPerFile);

Option opQuery =
Option.builder(QUERY_COMMAND_ARGS)
.longOpt(QUERY_COMMAND_NAME)
Expand Down

0 comments on commit b1ea8dd

Please sign in to comment.