From: Ash Berlin Date: Fri, 1 Feb 2008 19:33:00 +0000 (+0000) Subject: Fallback to SQL->SQL to diff for old producers X-Git-Tag: v0.08240~545^2~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2dc2cd0f0b1ab7ef7bc37066be6eb128d69b01c4;p=dbsrgits%2FDBIx-Class.git Fallback to SQL->SQL to diff for old producers --- diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 261b267..d5f352f 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -1380,10 +1380,17 @@ sub create_ddl_dir next; } + my $difffile = $schema->ddl_filename($db, $dir, $version, $preversion); + print STDERR "Diff: $difffile: $db, $dir, $version, $preversion \n"; + if(-e $difffile) + { + warn("$difffile already exists, skipping"); + next; + } + my $source_schema; { my $t = SQL::Translator->new; - $t->parser_args(no_default_sizes => 1); $t->debug( 0 ); $t->trace( 0 ); $t->parser( $db ) or die $t->error; @@ -1394,17 +1401,26 @@ sub create_ddl_dir } } + # The "new" style of producers have sane normalization and can support + # diffing a SQL file against a DBIC->SQLT schema. Old style ones don't + # And we have to diff parsed SQL against parsed SQL. + my $dest_schema = $sqlt_schema; + + unless ( "SQL::Translator::Producers::$db"->can('preprocess_schema') ) { + my $t = SQL::Translator->new; + $t->debug( 0 ); + $t->trace( 0 ); + $t->parser( $db ) or die $t->error; + my $out = $t->translate( $filename ) or die $t->error; + $dest_schema = $t->schema; + $dest_schema->name( $filename ) + unless $dest_schema->name; + } + my $diff = SQL::Translator::Diff::schema_diff($source_schema, $db, - $sqlt_schema, $db, + $dest_schema, $db, {} ); - my $difffile = $schema->ddl_filename($db, $dir, $version, $preversion); - print STDERR "Diff: $difffile: $db, $dir, $version, $preversion \n"; - if(-e $difffile) - { - warn("$difffile already exists, skipping"); - next; - } if(!open $file, ">$difffile") { $self->throw_exception("Can't write to $difffile ($!)");