]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/php/Nominatim/DBTest.php
Merge pull request #2328 from lonvia/convert-tiger-to-csv
[nominatim.git] / test / php / Nominatim / DBTest.php
index c5f4f3954d39df65d4cd37ffc29fb66f808db672..1a2ecc861fe0ea68d15cb33a176692b5e1a37838 100644 (file)
@@ -164,14 +164,6 @@ class DBTest extends \PHPUnit\Framework\TestCase
             $this->assertTrue($oDB->tableExists('table1'));
             $this->assertFalse($oDB->tableExists('table99'));
             $this->assertFalse($oDB->tableExists(null));
-
-            $this->assertEmpty($oDB->getListOfIndices());
-            $oDB->exec('CREATE UNIQUE INDEX table1_index ON table1 (id)');
-            $this->assertEquals(
-                array('table1_index'),
-                $oDB->getListOfIndices()
-            );
-            $this->assertEmpty($oDB->getListOfIndices('table2'));
         }
 
         # select queries