예제 #1
0
 /**
  * @group DBAL-220
  */
 public function testCreateNonClusteredPrimaryKeyInTable()
 {
     $table = new \Doctrine\DBAL\Schema\Table("tbl");
     $table->addColumn("id", "integer");
     $table->setPrimaryKey(array("id"));
     $table->getIndex('primary')->addFlag('nonclustered');
     $this->assertEquals(array('CREATE TABLE tbl (id INT NOT NULL, PRIMARY KEY NONCLUSTERED (id))'), $this->_platform->getCreateTableSQL($table));
 }