summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarel Ben-Attia <harelba@gmail.com>2016-04-03 11:01:27 +0300
committerHarel Ben-Attia <harelba@gmail.com>2016-04-03 11:01:27 +0300
commitf6dcb5e7424d9805ddef5031eb1eca0ede5b50ce (patch)
tree55d0f2f4f8bf0d875e6f386d90cb1458553732c4
parentcd8bc6f6f7159071089f3067b39085ab34257a0a (diff)
Modified flag name for treating all column as text columns
-rwxr-xr-xbin/q4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/q b/bin/q
index 76c9e4b..49be953 100755
--- a/bin/q
+++ b/bin/q
@@ -1550,8 +1550,8 @@ def run_standalone():
help="Disable support for double double-quoting for escaping the double quote character. By default, you can use \"\" inside double quoted fields to escape double quotes. Mainly for backward compatibility.")
input_data_option_group.add_option("--disable-escaped-double-quoting", dest="disable_escaped_double_quoting", default=True, action="store_false",
help="Disable support for escaped double-quoting for escaping the double quote character. By default, you can use \\\" inside double quoted fields to escape double quotes. Mainly for backward compatibility.")
- input_data_option_group.add_option("--disable-column-type-detection", dest="disable_column_type_detection", default=False, action="store_true",
- help="Don't detect column types - All columns will be text columns")
+ input_data_option_group.add_option("--as-text", dest="disable_column_type_detection", default=False, action="store_true",
+ help="Don't detect column types - All columns will be treated as text columns")
input_data_option_group.add_option("-w","--input-quoting-mode",dest="input_quoting_mode",default="minimal",
help="Input quoting mode. Possible values are all, minimal and none. Note the slightly misleading parameter name, and see the matching -W parameter for output quoting.")
parser.add_option_group(input_data_option_group)