Fix sqlt options not matching documentation (RT#58318)
Peter Rabbitson [Wed, 17 Nov 2010 11:28:16 +0000 (11:28 +0000)]
Changes
script/sqlt

diff --git a/Changes b/Changes
index 0081690..7fb442c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,7 @@
 * Add support for PostGIS Geometry and Geography data types in the Pg producer
 * Some minor fixes to squash warnings on new perls
 * Support a custom_type_name hint when creating enum types in PostgreSQL
+* Fix sqlt options/pod mismatch (RT#58318)
 
 # ----------------------------------------------------------
 # 0.11006 2010-06-03
index 01870b0..720a926 100755 (executable)
@@ -202,8 +202,8 @@ my $mysql_version; # MySQL version
 
 GetOptions(
     'add-drop-table'   => \$add_drop_table,
-    'quote_table_names'   => \$quote_table_names,
-    'quote_field_names'   => \$quote_field_names,
+    'quote-table-names|quote_table_names'   => \$quote_table_names,
+    'quote-field-names|quote_field_names'   => \$quote_field_names,
     'd|debug'          => \$debug,
     'f|from|parser:s'  => \$from,
     'fs:s'             => \$field_separator,