From: Chris Hilton Date: Mon, 5 Mar 2007 20:01:27 +0000 (+0000) Subject: Don't test is_valid in equals() X-Git-Tag: v0.11008~381 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82f6b50ed16be6d06fdba4b06b862488cf6b14ff;p=dbsrgits%2FSQL-Translator.git Don't test is_valid in equals() --- diff --git a/lib/SQL/Translator/Schema/Index.pm b/lib/SQL/Translator/Schema/Index.pm index db628e2..4ded358 100644 --- a/lib/SQL/Translator/Schema/Index.pm +++ b/lib/SQL/Translator/Schema/Index.pm @@ -1,7 +1,7 @@ package SQL::Translator::Schema::Index; # ---------------------------------------------------------------------- -# $Id: Index.pm,v 1.15 2007-03-01 22:16:00 duality72 Exp $ +# $Id: Index.pm,v 1.16 2007-03-05 20:01:27 duality72 Exp $ # ---------------------------------------------------------------------- # Copyright (C) 2002-4 SQLFairy Authors # @@ -53,7 +53,7 @@ use base 'SQL::Translator::Schema::Object'; use vars qw($VERSION $TABLE_COUNT $VIEW_COUNT); -$VERSION = sprintf "%d.%02d", q$Revision: 1.15 $ =~ /(\d+)\.(\d+)/; +$VERSION = sprintf "%d.%02d", q$Revision: 1.16 $ =~ /(\d+)\.(\d+)/; my %VALID_INDEX_TYPE = ( UNIQUE, 1, @@ -255,7 +255,7 @@ Determines if this index is the same as another unless ($ignore_index_names) { return 0 unless $case_insensitive ? uc($self->name) eq uc($other->name) : $self->name eq $other->name; } - return 0 unless $self->is_valid eq $other->is_valid; + #return 0 unless $self->is_valid eq $other->is_valid; return 0 unless $self->type eq $other->type; my $selfFields = join(":", $self->fields); my $otherFields = join(":", $other->fields);