From 4e5044130684f961e19d9b221d92522eab2cc703 Mon Sep 17 00:00:00 2001 From: beberlei Date: Mon, 7 Dec 2009 19:19:54 +0000 Subject: [PATCH] [2.0] DDC-191 - Added Test-Case to verify the problem works. --- tests/Doctrine/Tests/DBAL/Schema/TableTest.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/DBAL/Schema/TableTest.php b/tests/Doctrine/Tests/DBAL/Schema/TableTest.php index fa415a153..b7830097e 100644 --- a/tests/Doctrine/Tests/DBAL/Schema/TableTest.php +++ b/tests/Doctrine/Tests/DBAL/Schema/TableTest.php @@ -330,5 +330,15 @@ class TableTest extends \PHPUnit_Framework_TestCase $this->assertTrue($constraints["foo_id_fk"]->hasOption("foo")); $this->assertEquals("bar", $constraints["foo_id_fk"]->getOption("foo")); } - + + public function testAddIndexWithCaseSensitiveColumnProblem() + { + $table = new Table("foo"); + $table->createColumn("id", 'integer'); + + $table->addIndex(array("ID"), "my_idx"); + + $this->assertTrue($table->hasIndex('my_idx')); + $this->assertEquals(array("ID"), $table->getIndex("my_idx")->getColumns()); + } } \ No newline at end of file