1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
use strict;
use lib qw(t/lib);
use dbixcsl_common_tests;
my $dsn = $ENV{DBICTEST_DB2_DSN} || '';
my $user = $ENV{DBICTEST_DB2_USER} || '';
my $password = $ENV{DBICTEST_DB2_PASS} || '';
my $tester = dbixcsl_common_tests->new(
vendor => 'DB2',
auto_inc_pk => 'INTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL PRIMARY KEY',
dsn => $dsn,
user => $user,
password => $password,
null => '',
preserve_case_mode_is_exclusive => 1,
quote_char => '"',
data_types => {
'timestamp DEFAULT CURRENT TIMESTAMP' => { data_type => 'timestamp', default_value => \'current_timestamp',
original => { default_value => \'current timestamp' } },
},
);
if( !$dsn || !$user ) {
$tester->skip_tests('You need to set the DBICTEST_DB2_DSN, _USER, and _PASS environment variables');
}
else {
$tester->run_tests();
}
# vim:et sts=4 sw=4 tw=0:
|