X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=install%2F5.005%2FDBD-Pg-1.22-fixvercmp%2Ft%2F13pgtype.t;fp=install%2F5.005%2FDBD-Pg-1.22-fixvercmp%2Ft%2F13pgtype.t;h=8db819ee9a3cd7576178822c47374f8a62bc0029;hp=0000000000000000000000000000000000000000;hb=ee146c3eada3bdb419ba471dd6df5e889d7dd7e5;hpb=c29fa7acc16efcc86af06077e739fca8b783c3c1 diff --git a/install/5.005/DBD-Pg-1.22-fixvercmp/t/13pgtype.t b/install/5.005/DBD-Pg-1.22-fixvercmp/t/13pgtype.t new file mode 100644 index 000000000..8db819ee9 --- /dev/null +++ b/install/5.005/DBD-Pg-1.22-fixvercmp/t/13pgtype.t @@ -0,0 +1,43 @@ +use strict; +use DBI; +use Test::More; + +if (defined $ENV{DBI_DSN}) { + plan tests => 3; +} else { + plan skip_all => 'cannot test without DB info'; +} + +my $dbh = DBI->connect($ENV{DBI_DSN}, $ENV{DBI_USER}, $ENV{DBI_PASS}, + {RaiseError => 1, AutoCommit => 0} + ); +ok(defined $dbh, + 'connect with transaction' + ); + +eval { + local $dbh->{PrintError} = 0; + $dbh->do(q{DROP TABLE tt}); + $dbh->commit(); +}; +$dbh->rollback(); + +$dbh->do(q{CREATE TABLE tt (blah numeric(5,2), foo text)}); +my $sth = $dbh->prepare(qq{ + SELECT * FROM tt WHERE FALSE + }); +$sth->execute(); + +my @types = @{$sth->{pg_type}}; + +ok($types[0] eq 'numeric', + 'type numeric' + ); + +ok($types[1] eq 'text', + 'type text' + ); + +$sth->finish(); +$dbh->rollback(); +$dbh->disconnect();