From: Ken Youens-Clark Date: Fri, 6 Jun 2003 22:22:20 +0000 (+0000) Subject: Now that the PG parser is using the Schema object, a previously uncaught X-Git-Tag: v0.02~85 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2da7994bce08a92ef54af83c829d908d11ab9527;p=dbsrgits%2FSQL-Translator.git Now that the PG parser is using the Schema object, a previously uncaught bug surfaced in that an index was created on a table (cvterm_synonym) that isn't defined in the SQL, so that creates a problem. Commented out the line. --- diff --git a/t/08postgres-to-mysql.t b/t/08postgres-to-mysql.t index e2c9151..d7f6d2c 100644 --- a/t/08postgres-to-mysql.t +++ b/t/08postgres-to-mysql.t @@ -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