@@ -464,6 +464,12 @@ def cmdLineParser(argv=None):
464464 help = "Exclude DBMS system databases when "
465465 "enumerating tables" )
466466
467+ enumeration .add_option ("--binary-fields" , dest = "binaryFields" ,
468+ help = "Result fields having binary values (e.g. \" digest\" )" )
469+
470+ enumeration .add_option ("--pivot-column" , dest = "pivotColumn" ,
471+ help = "Pivot column name" )
472+
467473 enumeration .add_option ("--where" , dest = "dumpWhere" ,
468474 help = "Use WHERE condition while table dumping" )
469475
@@ -662,9 +668,6 @@ def cmdLineParser(argv=None):
662668 action = "store_true" ,
663669 help = "Parse and display DBMS error messages from responses" )
664670
665- general .add_option ("--pivot-column" , dest = "pivotColumn" ,
666- help = "Pivot column name" )
667-
668671 general .add_option ("--save" , dest = "saveConfig" ,
669672 help = "Save options to a configuration INI file" )
670673
@@ -760,9 +763,6 @@ def cmdLineParser(argv=None):
760763 parser .add_option ("--profile" , dest = "profile" , action = "store_true" ,
761764 help = SUPPRESS_HELP )
762765
763- parser .add_option ("--binary-fields" , dest = "binaryFields" ,
764- help = SUPPRESS_HELP )
765-
766766 parser .add_option ("--force-dns" , dest = "forceDns" , action = "store_true" ,
767767 help = SUPPRESS_HELP )
768768
0 commit comments