8 my $schema = DBICTest->init_schema();
9 $schema->storage->sql_maker->quote_char('"');
11 my $rs = $schema->resultset ('Artist');
12 my $last_obj = $rs->search ({}, { order_by => { -desc => 'artistid' }, rows => 1})->single;
13 my $last_id = $last_obj ? $last_obj->artistid : 0;
16 $schema->is_executed_sql_bind( sub {
17 $obj = $rs->create ({})
19 'INSERT INTO "artist" DEFAULT VALUES'
20 ]], 'Default-value insert correct SQL' );
22 ok ($obj, 'Insert defaults ( $rs->create ({}) )' );
24 # this should be picked up without calling the DB again
25 is ($obj->artistid, $last_id + 1, 'Autoinc PK works');
27 # for this we need to refresh
28 $obj->discard_changes;
29 is ($obj->rank, 13, 'Default value works');