From: Justin Hunter Date: Tue, 27 Jul 2010 03:17:35 +0000 (-0700) Subject: show_warnings should default to 0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FSQL-Translator-2.0-ish.git;a=commitdiff_plain;h=bdf688cd7e4bdde6fd9a6c7b88ab903f0c301f10 show_warnings should default to 0 --- diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index 21026db..a25a59e 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -66,7 +66,7 @@ class SQL::Translator { has 'version' => (isa => Str, is => 'ro', default => $VERSION); has 'add_drop_table' => (isa => Bool, is => 'rw', default => 0); has 'no_comments' => (isa => Bool, is => 'rw', default => 0); - has 'show_warnings' => (isa => Bool, is => 'rw', default => 1); + has 'show_warnings' => (isa => Bool, is => 'rw', default => 0); has 'trace' => (isa => Bool, is => 'rw', default => 0); has 'quote_table_names' => (isa => Bool, is => 'rw', default => 0); has 'quote_field_names' => (isa => Bool, is => 'rw', default => 0);