public function testCreateFederatedOnTable()
 {
     $table = new \Doctrine\DBAL\Schema\Table("tbl");
     $table->addColumn("id", "integer");
     $table->addOption('azure.federatedOnDistributionName', 'TblId');
     $table->addOption('azure.federatedOnColumnName', 'id');
     $this->assertEquals(array('CREATE TABLE tbl (id INT NOT NULL) FEDERATED ON (TblId = id)'), $this->platform->getCreateTableSQL($table));
 }