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