From: Matt S Trout Date: Sat, 15 Jul 2006 17:10:55 +0000 (+0000) Subject: skip empty queries to eliminate spurious warnings on ->deploy X-Git-Tag: v0.07002~75^2~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b489f68a16d58e869202b9d0077fd84c940387df;p=dbsrgits%2FDBIx-Class.git skip empty queries to eliminate spurious warnings on ->deploy --- diff --git a/Changes b/Changes index 6a0c4fc..1285abc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ Revision history for DBIx::Class + - skip empty queries to eliminate spurious warnings on ->deploy - fixups to ORDER BY, tweaks to deepen some copies in ResultSet - fixup for RowNum limit syntax with functions diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 4116595..d5c34c7 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -1050,6 +1050,7 @@ sub deploy { # next if($_ =~ /^DROP/m); next if($_ =~ /^BEGIN TRANSACTION/m); next if($_ =~ /^COMMIT/m); + next if $_ =~ /^\s+$/; # skip whitespace only $self->debugobj->query_start($_) if $self->debug; $self->dbh->do($_) or warn "SQL was:\n $_"; $self->debugobj->query_end($_) if $self->debug;