r40387 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r40386‎ | r40387 | r40388 >
Date:17:20, 3 September 2008
Author:dantman
Status:old
Tags:
Comment:
Use DROP TEMPORARY not DROP for dropping the temporary table.
Modified paths:
  • /trunk/extensions/SemanticDrilldown/includes/SD_Filter.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticDrilldown/includes/SD_Filter.php
@@ -152,7 +152,7 @@
153153 */
154154 function dropTempTable() {
155155 $dbr = wfGetDB( DB_SLAVE );
156 - $sql = "DROP TABLE semantic_drilldown_filter_values";
 156+ $sql = "DROP TEMPORARY TABLE semantic_drilldown_filter_values";
157157 $dbr->query($sql);
158158 }
159159 }

Status & tagging log