From: Peter Rabbitson Date: Wed, 17 Nov 2010 11:28:16 +0000 (+0000) Subject: Fix sqlt options not matching documentation (RT#58318) X-Git-Tag: v0.11008~32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1a45aefdabc4f6c524613949fe6ceb93d50b1606;p=dbsrgits%2FSQL-Translator.git Fix sqlt options not matching documentation (RT#58318) --- diff --git a/Changes b/Changes index 0081690..7fb442c 100644 --- 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 diff --git a/script/sqlt b/script/sqlt index 01870b0..720a926 100755 --- a/script/sqlt +++ b/script/sqlt @@ -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,