Fixed 'useless use of constant in void context' warning.
[dbsrgits/SQL-Translator.git] / t / 08postgres-to-mysql.t
index e2c9151..19a668b 100644 (file)
@@ -2,7 +2,7 @@
 # vim: set ft=perl:
 
 use strict;
-use Test::More 'no_plan'; # tests => 1;
+use Test::More tests => 1;
 use SQL::Translator;
 use Data::Dumper;
 
@@ -102,7 +102,10 @@ create table cvtermsynonym (
 
        unique(cvterm_id, termsynonym)
 );
-create index cvterm_synonym_idx1 on cvterm_synonym (cvterm_id);
+
+-- The table "cvterm_synonym" doesn't exist, so 
+-- creating an index on it screws things up!
+-- create index cvterm_synonym_idx1 on cvterm_synonym (cvterm_id);
 
 -- ================================================
 -- TABLE: cvterm_dbxref