View | Details | Raw Unified | Return to bug 20144
Collapse All | Expand All

(-)a/t/db_dependent/UsageStats.t (-3 / +2 lines)
Lines 240-247 sub construct_objects_needed { Link Here
240
240
241
    $query = '
241
    $query = '
242
    INSERT INTO biblio
242
    INSERT INTO biblio
243
      (title, author)
243
      (title, author, datecreated)
244
    VALUES (?,?)';
244
    VALUES (?,?, NOW())';
245
    $insert_sth = $dbh->prepare($query);
245
    $insert_sth = $dbh->prepare($query);
246
    $insert_sth->execute( $title1, $author1 );
246
    $insert_sth->execute( $title1, $author1 );
247
    my $biblionumber1 = $dbh->last_insert_id( undef, undef, 'biblio', undef );
247
    my $biblionumber1 = $dbh->last_insert_id( undef, undef, 'biblio', undef );
248
- 

Return to bug 20144