From: Alexander Hartmaier Date: Wed, 21 Nov 2012 09:21:46 +0000 (+0100) Subject: don't wrap the SQLite test schema DDL queries in a transaction to suppress DBIx:... X-Git-Tag: 2.004004~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Controller-DBIC-API.git;a=commitdiff_plain;h=d828d59a0d45403b4ca0075d902933531ab75924 don't wrap the SQLite test schema DDL queries in a transaction to suppress DBIx::Class warnings --- diff --git a/Changes b/Changes index d6fe455..277f550 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for Catalyst-Controller-DBIC-API: {{ $dist->version }} {{ $NEXT }} - Fixed test failures in t/[rest,rpc]/item.t on newer HTTP::Message versions +- Don't wrap the SQLite test schema DDL queries in a transaction to suppress + DBIx::Class warnings 2.004003 2011-12-19 14:41:59 Europe/Vienna - Fixed test failure in generic.t with Moose > 2.02 diff --git a/t/lib/sqlite.sql b/t/lib/sqlite.sql index 75342b5..c7de744 100644 --- a/t/lib/sqlite.sql +++ b/t/lib/sqlite.sql @@ -2,7 +2,7 @@ -- Created by SQL::Translator::Producer::SQLite -- Created on Tue Aug 8 01:53:20 2006 -- -BEGIN TRANSACTION; +--BEGIN TRANSACTION; -- -- Table: cd_to_producer @@ -60,4 +60,4 @@ CREATE TABLE producer ( name varchar(100) NOT NULL ); -COMMIT; +--COMMIT;