Browse Source

MSSQL does not support explicit value for an IDENTITY column #9773

tags/2.0.7
Alexander Makarov 9 years ago
parent
commit
12761bf677
  1. 5
      tests/framework/db/mssql/MssqlActiveRecordTest.php

5
tests/framework/db/mssql/MssqlActiveRecordTest.php

@ -11,4 +11,9 @@ use yiiunit\framework\db\ActiveRecordTest;
class MssqlActiveRecordTest extends ActiveRecordTest
{
protected $driverName = 'sqlsrv';
public function testExplicitPkOnAutoIncrement()
{
$this->markTestSkipped('MSSQL does not support explicit value for an IDENTITY column.');
}
}

Loading…
Cancel
Save