From: Matt S Trout Date: Tue, 21 Mar 2006 15:57:51 +0000 (+0000) Subject: Merge 'trunk' into 'DBIx-Class-current' X-Git-Tag: v0.07002~75^2~288 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2059184666455369538caa26d7ef16d5eec935fa;p=dbsrgits%2FDBIx-Class.git Merge 'trunk' into 'DBIx-Class-current' r9049@obrien (orig r1275): jguenther | 2006-03-21 12:03:55 +0000 changed Foo/Bar in docs to more meaningful names r9050@obrien (orig r1276): matthewt | 2006-03-21 14:10:01 +0000 Docs tweaks from bluefeet, correction to ResultSet POD update by jguenther r9051@obrien (orig r1277): matthewt | 2006-03-21 14:26:22 +0000 Corrected columns_info_for indent level - 2 space indent everyone please, you may not like it but the rest of the code is already like that r9052@obrien (orig r1278): matthewt | 2006-03-21 15:57:16 +0000 Tweaked columns_info_for test to get around SQLite inconsistencies --- 2059184666455369538caa26d7ef16d5eec935fa diff --cc t/run/04db.tl index 6292fef,daea4fe..f7d847c --- a/t/run/04db.tl +++ b/t/run/04db.tl @@@ -38,13 -44,7 +44,12 @@@ my $test_type_info = 'name' => { 'data_type' => 'varchar', 'is_nullable' => 0, - 'size' => 100, - } + }, + 'position' => { + 'data_type' => 'INTEGER', + 'is_nullable' => 0, + 'size' => undef, + }, }; is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');