8 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_DB2_${_}" } qw/DSN USER PASS/};
10 #warn "$dsn $user $pass";
12 plan skip_all => 'Set $ENV{DBICTEST_DB2_DSN}, _USER and _PASS to run this test'
13 unless ($dsn && $user);
17 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
19 my $dbh = $schema->storage->dbh;
21 eval { $dbh->do("DROP TABLE artist") };
23 $dbh->do("CREATE TABLE artist (artistid INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), name VARCHAR(255), charfield CHAR(10));");
25 # This is in core, just testing that it still loads ok
26 $schema->class('Artist')->load_components('PK::Auto');
28 # test primary key handling
29 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
30 ok($new->artistid, "Auto-PK worked");
34 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
36 my $it = $schema->resultset('Artist')->search( {},
38 order_by => 'artistid'
41 is( $it->count, 3, "LIMIT count ok" );
42 is( $it->next->name, "foo", "iterator->next ok" );
44 is( $it->next->name, "Artist 2", "iterator->next ok" );
45 is( $it->next, undef, "next past end of resultset ok" );
47 my $test_type_info = {
49 'data_type' => 'INTEGER',
54 'data_type' => 'VARCHAR',
59 'data_type' => 'CHAR',
66 my $type_info = $schema->storage->columns_info_for('artist');
67 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
71 $dbh->do("DROP TABLE artist") if $dbh;