From: David Kamholz <dkamholz@cpan.org>
Date: Sun, 12 Feb 2006 13:44:33 +0000 (+0000)
Subject: small aesthetic fix to Storage::DBI::Oracle
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bb4069d6046a8d5f1c431ba839fb8af9aef49c96;p=dbsrgits%2FDBIx-Class-Historic.git

small aesthetic fix to Storage::DBI::Oracle
---

diff --git a/lib/DBIx/Class/Storage/DBI/Oracle.pm b/lib/DBIx/Class/Storage/DBI/Oracle.pm
index 063c88b..5fa4fce 100644
--- a/lib/DBIx/Class/Storage/DBI/Oracle.pm
+++ b/lib/DBIx/Class/Storage/DBI/Oracle.pm
@@ -22,7 +22,7 @@ sub get_autoinc_seq {
     
   # look up the correct sequence automatically
   my $dbh = $self->_dbh;
-  my $sql = qq{
+  my $sql = q{
     SELECT trigger_body FROM ALL_TRIGGERS t
     WHERE t.table_name = ?
     AND t.triggering_event = 'INSERT'