Skip to content

Commit

Permalink
Fix - DBAPI->truncate()
Browse files Browse the repository at this point in the history
  • Loading branch information
yama committed Dec 4, 2022
1 parent 983c36f commit 0ef385b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/includes/extenders/dbapi.mysqli.class.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ public function optimize($table_name)
*/
public function truncate($table_name)
{
return $this->query('TRUNCATE '.$table_name);
return $this->query('TRUNCATE '.$this->replaceFullTableName($table_name));
}
/**
Expand Down

0 comments on commit 0ef385b

Please sign in to comment.