/**
  * Builds the DDL SQL to drop an Index.
  *
  * @param  Index  $index
  * @return string
  */
 public function getDropIndexDDL(Index $index)
 {
     $pattern = "\nDROP INDEX %s;\n";
     return sprintf($pattern, $this->quoteIdentifier($index->getFQName()));
 }