~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to lib/GenTest/Executor/MySQL.pm

Revert change from Oct 1 causing regression with INFORMATION_SCHEMA tests, see https://bugs.launchpad.net/randgen/+bug/655740. Reverted revid philips@eve-20101001113351-hr7p09x3ukmfvf63.

Show diffs side-by-side

added added

removed removed

Lines of Context:
790
790
                    "ELSE 'ordinary' END ".
791
791
         "FROM information_schema.tables INNER JOIN ".
792
792
              "information_schema.columns USING(table_schema, table_name) ".
793
 
          "WHERE table_name <> 'DUMMY'
794
 
           AND information_schema.tables.TABLE_SCHEMA NOT IN ('information_schema','mysql')
795
 
           AND information_schema.columns.TABLE_SCHEMA NOT IN ('information_schema','mysql')
796
 
    "; 
 
793
          "WHERE table_name <> 'DUMMY'"; 
797
794
 
798
795
    return $self->dbh()->selectall_arrayref($query);
799
796
}