nuke DBI->trace calls
[dbsrgits/DBIx-Class.git] / t / run / 11mysql.tl
index 2411b96..15664d9 100644 (file)
@@ -20,7 +20,7 @@ $dbh->do("CREATE TABLE artist (artistid INTEGER NOT NULL AUTO_INCREMENT PRIMARY
 
 #'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
 
-MySQLTest::Artist->load_components('PK::Auto::MySQL');
+MySQLTest::Artist->load_components('PK::Auto');
 
 # test primary key handling
 my $new = MySQLTest::Artist->create({ name => 'foo' });
@@ -45,17 +45,20 @@ my $test_type_info = {
     'artistid' => {
         'data_type' => 'INT',
         'is_nullable' => 0,
-        'size' => 11
+        'size' => 11,
+        'default_value' => undef,
     },
     'name' => {
         'data_type' => 'VARCHAR',
         'is_nullable' => 1,
-        'size' => 255
+        'size' => 255,
+        'default_value' => undef,
     },
     'charfield' => {
         'data_type' => 'VARCHAR',
         'is_nullable' => 1,
-        'size' => 10 
+        'size' => 10,
+        'default_value' => undef,
     },
 };