diff --git a/CHANGELOG.md b/CHANGELOG.md index f003da6fc..acfffb5ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 2.0.0 under development -- Enh #913: Add methods `SchemaInterface::hasSchema()`, `SchemaInterface::hasTable()`, `SchemaInterface::hasView()` (@evil1) +- New #913: Add methods `SchemaInterface::hasSchema()`, `SchemaInterface::hasTable()`, `SchemaInterface::hasView()` (@evil1) - Enh #820: Support `Traversable` values for `AbstractDMLQueryBuilder::batchInsert()` method with empty columns (@Tigrov) - Enh #815: Refactor `Query::column()` method (@Tigrov) - Enh #816: Allow scalar values for `$columns` parameter of `Query::select()` and `Query::addSelect()` methods (@Tigrov) diff --git a/tests/Common/CommonSchemaTest.php b/tests/Common/CommonSchemaTest.php index 1c321da3b..a91ec4f69 100644 --- a/tests/Common/CommonSchemaTest.php +++ b/tests/Common/CommonSchemaTest.php @@ -419,11 +419,6 @@ public function testHasTable(): void $this->assertTrue($schema->hasTable('category', '', true)); $this->assertFalse($schema->hasTable('no_such_table', '', true)); - if ($db->getDriverName() !== 'sqlite') { - $this->assertFalse($schema->hasTable('customer', 'no_such_schema', true)); - $this->assertFalse($schema->hasTable('category', 'no_such_schema', true)); - } - $db->close(); } @@ -516,10 +511,6 @@ public function testHasView(): void $this->assertTrue($schema->hasView('animal_view', '', true)); $this->assertFalse($schema->hasView('no_such_view', '', true)); - if ($db->getDriverName() !== 'sqlite') { - $this->assertFalse($schema->hasView('animal_view', 'no_such_schema', true)); - } - $db->close(); }