Skip Menu |

This queue is for tickets about the DBIx-DBSchema CPAN distribution.

Report information
The Basics
Id: 27592
Status: resolved
Priority: 0/
Queue: DBIx-DBSchema

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Syntax error in SQLite.pm (CVS version)
When doing "make test" on the CVS version, I get the following error: t/load-sqlite....syntax error at /mnt/redhat-root/home/slavenr/work/drafts/slavenr-svn/DBIx-DBSchema/blib/lib/DBIx/DBSchema/DBD/SQLite.pm line 11, near "'INTEGER PRIMARY KEY AUTOINCREMENT';" Compilation failed in require at t/load-sqlite.t line 3. BEGIN failed--compilation aborted at t/load-sqlite.t line 3. t/load-sqlite....dubious Test returned status 255 (wstat 65280, 0xff00) DIED. FAILED test 1 Failed 1/1 tests, 0.00% okay A patch is attached. Regards, Slaven
Subject: dbschema-dbd-sqlite.diff
Index: DBSchema/DBD/SQLite.pm =================================================================== --- DBSchema/DBD/SQLite.pm (revision 19991) +++ DBSchema/DBD/SQLite.pm (working copy) @@ -8,7 +8,7 @@ @ISA = qw(DBIx::DBSchema::DBD); %typemap = ( -'SERIAL' => 'INTEGER PRIMARY KEY AUTOINCREMENT'; +'SERIAL' => 'INTEGER PRIMARY KEY AUTOINCREMENT', ); =head1 NAME
patch applied, thanks!