add IGNORE INDEX option to mysql database handler
[lhc/web/wiklou.git] / includes / db / DatabaseMysqlBase.php
index 3ebc3ec..52dee01 100644 (file)
@@ -865,6 +865,14 @@ abstract class DatabaseMysqlBase extends Database {
                return "FORCE INDEX (" . $this->indexName( $index ) . ")";
        }
 
+       /**
+        * @param string $index
+        * @return string
+        */
+       function ignoreIndexClause( $index ) {
+               return "IGNORE INDEX (" . $this->indexName( $index ) . ")";
+       }
+
        /**
         * @return string
         */