From: janw Date: Thu, 24 Apr 2008 11:40:40 +0000 (+0000) Subject: Correct syntax (hope so) - vacumm table has no effect. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c461774e974e9866634b0bce54a6a52bfead7643;p=gosa.git Correct syntax (hope so) - vacumm table has no effect. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10671 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server index dd29fd8a7..660b94e74 100755 --- a/gosa-si/gosa-si-server +++ b/gosa-si/gosa-si-server @@ -1747,8 +1747,8 @@ sub create_fai_release_db { daemon_log("$session_id DEBUG: Inserting ".scalar @sql_list." entries to DB",8); if(@sql_list) { - unshift @sql_list, "VACUUM $table_name"; # at first vacuum the logs and clear the db unshift @sql_list, "DELETE FROM $table_name"; + unshift @sql_list, "VACUUM"; # at first vacuum the logs and clear the db $fai_release_db->exec_statementlist(\@sql_list); } daemon_log("$session_id DEBUG: Done with inserting",7);