From 9fdce97b970cc90987925e161708f2fc083d29ea Mon Sep 17 00:00:00 2001 From: beberlei Date: Sun, 6 Dec 2009 13:06:09 +0000 Subject: [PATCH] [2.0] DDC-169 - Fix bug in Comparator --- lib/Doctrine/DBAL/Schema/Comparator.php | 2 +- tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/DBAL/Schema/Comparator.php b/lib/Doctrine/DBAL/Schema/Comparator.php index 209106dec..ec37c9635 100644 --- a/lib/Doctrine/DBAL/Schema/Comparator.php +++ b/lib/Doctrine/DBAL/Schema/Comparator.php @@ -203,7 +203,7 @@ class Comparator } foreach ($table1Indexes AS $index1Name => $index1Definition) { - $tableDifferences->removedIndexes[$index1Name] = true; + $tableDifferences->removedIndexes[$index1Name] = $index1Definition; $changes++; } diff --git a/tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php b/tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php index c806c4e27..dfde7dd5a 100644 --- a/tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php +++ b/tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php @@ -233,7 +233,12 @@ class ComparatorTest extends \PHPUnit_Framework_TestCase array ( 'bugdb' => new TableDiff( 'bugdb', array(), array(), array(), array(), array(), array ( - 'primary' => true + 'primary' => new Index('primary', + array( + 'integerfield1' + ), + true + ) ) ), )