Committed by Greg Sabino Mullane <[email protected]> Set to version 2.20.1_5
--- META.yml | 6 +++--- Makefile.PL | 2 +- Pg.pm | 4 ++-- README | 4 ++-- lib/Bundle/DBD/Pg.pm | 2 +- testme.tmp.pl | 14 ++++++++++++++ 6 files changed, 23 insertions(+), 9 deletions(-) diff --git a/META.yml b/META.yml index 601e846..7c91a16 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name : DBD-Pg -version : 2.20.1_4 +version : 2.20.1_5 abstract : DBI PostgreSQL interface author: - Greg Sabino Mullane <[email protected]> @@ -30,10 +30,10 @@ recommends: provides: DBD::Pg: file : Pg.pm - version : 2.20.1_4 + version : 2.20.1_5 Bundle::DBD::Pg: file : lib/Bundle/DBD/Pg.pm - version : 2.20.1_4 + version : 2.20.1_5 keywords: - Postgres diff --git a/Makefile.PL b/Makefile.PL index 4d4160e..363c404 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ use warnings; use 5.008001; ## No version.pm for this one, as the prereqs are not loaded yet. -my $VERSION = '2.20.1_4'; +my $VERSION = '2.20.1_5'; ## App::Info is stored inside t/lib ## Create a proper path so we can use it below diff --git a/Pg.pm b/Pg.pm index fd74072..1a6b49b 100644 --- a/Pg.pm +++ b/Pg.pm @@ -16,7 +16,7 @@ use 5.008001; { package DBD::Pg; - use version; our $VERSION = qv('2.20.1_4'); + use version; our $VERSION = qv('2.20.1_5'); use DBI (); use DynaLoader (); @@ -1775,7 +1775,7 @@ DBD::Pg - PostgreSQL database driver for the DBI module =head1 VERSION -This documents version 2.20.1_4 of the DBD::Pg module +This documents version 2.20.1_5 of the DBD::Pg module =head1 DESCRIPTION diff --git a/README b/README index 3475486..912301f 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ DBD::Pg -- the DBI PostgreSQL interface for Perl =================================================== WARNING!! -THIS IS A TEST VERSION (2.20.1_4) AND SHOULD BE USED +THIS IS A TEST VERSION (2.20.1_5) AND SHOULD BE USED FOR TESTING PURPOSES ONLY. PLEASE USE A STABLE VERSION (no underscore) BY VISITING: @@ -16,7 +16,7 @@ http://search.cpan.org/dist/DBD-Pg/ DESCRIPTION: ------------ -This is version 2.20.1_4 of DBD::Pg, the Perl interface to Postgres using DBI. +This is version 2.20.1_5 of DBD::Pg, the Perl interface to Postgres using DBI. The web site for this interface, and the latest version, can be found at: http://search.cpan.org/dist/DBD-Pg/ diff --git a/lib/Bundle/DBD/Pg.pm b/lib/Bundle/DBD/Pg.pm index 28831a2..d57178b 100644 --- a/lib/Bundle/DBD/Pg.pm +++ b/lib/Bundle/DBD/Pg.pm @@ -4,7 +4,7 @@ package Bundle::DBD::Pg; use strict; use warnings; -$VERSION = '2.20.1_4'; +$VERSION = '2.20.1_5'; 1; diff --git a/testme.tmp.pl b/testme.tmp.pl index af602f2..1b76eb4 100755 --- a/testme.tmp.pl +++ b/testme.tmp.pl @@ -26,6 +26,8 @@ my $dbh = DBI->connect($DSN, '', '', {AutoCommit=>0,RaiseError=>1,PrintError=>0} my $me = $dbh->{Driver}{Name}; print "DBI is version $DBI::VERSION, I am $me, version of DBD::Pg is $DBD::Pg::VERSION\n"; +user_arrays(); + commit_return_test(); #utf8_print_test(); @@ -35,6 +37,18 @@ commit_return_test(); exit; +sub user_arrays { + +print "User arrays!\n"; + + + + +exit; + +} ## end of user_arrays + + sub commit_return_test { $dbh->{RaiseError} = 0; -- 1.8.4
