X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSetup.pm;h=b493cb631cdef116838ccbc03240ed3d64bac039;hb=e6a8b3fc4dc400af1a7ed827eaf9752ec99ad289;hp=ddcad9c26dc39a26a9002ce918195ef831189a15;hpb=9c2c91ea7f94d7981cd1c8d212a4b04751fcd023;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Setup.pm b/t/lib/DBICTest/Setup.pm index ddcad9c..b493cb6 100755 --- a/t/lib/DBICTest/Setup.pm +++ b/t/lib/DBICTest/Setup.pm @@ -4,7 +4,7 @@ use DBICTest; my $schema = DBICTest->initialise; -$schema->storage->on_connect_do([ "PRAGMA synchronous = OFF" ]); +# $schema->storage->on_connect_do([ "PRAGMA synchronous = OFF" ]); my $dbh = $schema->storage->dbh; @@ -19,7 +19,7 @@ if ($ENV{"DBICTEST_SQLT_DEPLOY"}) { close IN; - $dbh->do($_) for split(/\n\n/, $sql); + $dbh->do($_) for split(/;\n/, $sql); } $schema->storage->dbh->do("PRAGMA synchronous = OFF");