adding experimental for --group-concat

This commit is contained in:
Miroslav Stampar 2011-02-22 14:35:38 +00:00
parent 640ba5d744
commit d05bd75068
2 changed files with 1 additions and 2 deletions

View File

@ -1125,7 +1125,6 @@ def __cleanupOptions():
conf.keepAlive = True
conf.nullConnection = not conf.textOnly
conf.threads = 4 if conf.threads < 4 else conf.threads
conf.groupConcat = True
if conf.tor:
conf.proxy = DEFAULT_TOR_PROXY

View File

@ -150,7 +150,7 @@ def cmdLineParser():
"requests (default 1)")
optimization.add_option("--group-concat", dest="groupConcat", action="store_true",
default=False, help="Use GROUP_CONCAT MySQL technique in dumping phase")
default=False, help="Use GROUP_CONCAT (MySQL/error) in dumping phase (experimental)")
# Injection options
injection = OptionGroup(parser, "Injection", "These options can be "