/**
  * @group DBAL-195
  */
 public function testDropAndCreateSequence()
 {
     if (!$this->_conn->getDatabasePlatform()->supportsSequences()) {
         $this->markTestSkipped($this->_conn->getDriver()->getName() . ' does not support sequences.');
     }
     $sequence = new \Doctrine\DBAL\Schema\Sequence('dropcreate_sequences_test_seq', 20, 10);
     $this->_sm->dropAndCreateSequence($sequence);
 }