Commit 949a9ffa authored by Steve Müller's avatar Steve Müller

Add SQLServerPlatform supports schemas

parent 3ba21503
...@@ -106,6 +106,14 @@ class SQLServerPlatform extends AbstractPlatform ...@@ -106,6 +106,14 @@ class SQLServerPlatform extends AbstractPlatform
return false; return false;
} }
/**
* {@inheritdoc}
*/
public function supportsSchemas()
{
return true;
}
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
......
...@@ -119,6 +119,11 @@ class SQLServerPlatformTest extends AbstractPlatformTestCase ...@@ -119,6 +119,11 @@ class SQLServerPlatformTest extends AbstractPlatformTestCase
$this->assertTrue($this->_platform->supportsIdentityColumns()); $this->assertTrue($this->_platform->supportsIdentityColumns());
} }
public function testSupportsSchemas()
{
$this->assertTrue($this->_platform->supportsSchemas());
}
public function testDoesNotSupportSavePoints() public function testDoesNotSupportSavePoints()
{ {
$this->assertTrue($this->_platform->supportsSavepoints()); $this->assertTrue($this->_platform->supportsSavepoints());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment