Skip to content

Commit

Permalink
Merged in Amiri Barksdale's patch for enviroment variables for Makefi…
Browse files Browse the repository at this point in the history
…le.PL
  • Loading branch information
EC2 Default User committed May 9, 2011
1 parent 7690483 commit 538953a
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
2011-05-08 Patrick Galbraith <patg@patg.net> Rob Hoelz <rhoelz@inoc.com>
* Asynchronous support added by Rob Hoelz
* Pedro Melo - fix to change sv_undef to PL_sv_undef from 4.018
2011-05-08 Patrick Galbraith <patg@patg.net> Rob Hoelz <rhoelz@inoc.com> (4.019)
* Asynchronous support added by Rob Hoelz - Thanks!
* Amiri Barksdale - Enable environment variables for installation options, add
docs to POD - Thanks!
* Pedro Melo - fix to change sv_undef to PL_sv_undef from 4.018 - Thanks!

2010-10-11 Patrick Galbraith <patg@patg.net> (4.018)
* Added client and server info patch from Robert M. Jansen
Expand Down
46 changes: 46 additions & 0 deletions t/86_bug_36972.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!perl -w
# vim: ft=perl

use strict;
use Test::More;
use DBI;
use lib 't', '.';
require 'lib.pl';
use vars qw($table $test_dsn $test_user $test_password);

$|= 1;

my $dbh;
eval {$dbh= DBI->connect($test_dsn, $test_user, $test_password,
{ RaiseError => 1, PrintError => 1, AutoCommit => 0 });};

if ($@) {
plan skip_all => "ERROR: $@. Can't continue test";
}
plan tests => 11;

ok(defined $dbh, "connecting");

#
# Bug #42723: Binding server side integer parameters results in corrupt data
#
ok($dbh->do('DROP TABLE IF EXISTS t1'), "making slate clean");

ok($dbh->do('CREATE TABLE `t1` (`i` int,`si` smallint,`ti` tinyint,`bi` bigint)'), "creating test table");

my $sth2;
ok($sth2 = $dbh->prepare('INSERT INTO t1 VALUES (?,?,?,?)'));

#bind test values
ok($sth2->bind_param(1, 101, DBI::SQL_INTEGER), "binding int");
ok($sth2->bind_param(2, 102, DBI::SQL_SMALLINT), "binding smallint");
ok($sth2->bind_param(3, 103, DBI::SQL_TINYINT), "binding tinyint");
ok($sth2->bind_param(4, 104, DBI::SQL_INTEGER), "binding bigint");

ok($sth2->execute(), "inserting data");

is_deeply($dbh->selectall_arrayref('SELECT * FROM t1'), [[101, 102, 103, 104]]);

ok ($dbh->do('DROP TABLE t1'), "cleaning up");

$dbh->disconnect();

0 comments on commit 538953a

Please sign in to comment.