aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/database.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-31 10:33:20 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-31 10:33:20 +0000
commit4669a3e824915d3c8418de1f6b17a6811441c617 (patch)
treeb9c884cdce6a4e2e34e52f44f5d7e643d855ab23 /engine/lib/database.php
parentf72baa4731cb98f42a21fe9737254c706e7ebcbf (diff)
downloadelgg-4669a3e824915d3c8418de1f6b17a6811441c617.tar.gz
elgg-4669a3e824915d3c8418de1f6b17a6811441c617.tar.bz2
Closes #493: Moved database queries out of module and in to core in line with best practice.
git-svn-id: https://code.elgg.org/elgg/trunk@2369 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/database.php')
-rw-r--r--engine/lib/database.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/engine/lib/database.php b/engine/lib/database.php
index c46d6023f..e1f007399 100644
--- a/engine/lib/database.php
+++ b/engine/lib/database.php
@@ -368,7 +368,17 @@
return false;
return $tables;
- }
+ }
+
+ /**
+ * Run an optimize query on a mysql tables. Useful for executing after major data changes.
+ *
+ */
+ function optimize_table($table)
+ {
+ $table = sanitise_string($table);
+ return update_data("optimize table $table");
+ }
/**
* Get the last database error for a particular database link