diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-04-05 16:47:59 +0200 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-04-05 16:47:59 +0200 |
commit | 57414b7ee33c8e3c6ee9fd2f63353bf9fa353651 (patch) | |
tree | 92276c49037a3dc9e046278c6c971a05d92d9a87 /system/database/DB_active_rec.php | |
parent | 0793b1c918a0146920b1a03323f055521c4a9c66 (diff) | |
parent | 6d83cde3ba326f400b11475c51a4becec51c2de8 (diff) |
Merge remote-tracking branch 'upstream/develop' into db-tests
Diffstat (limited to 'system/database/DB_active_rec.php')
-rw-r--r-- | system/database/DB_active_rec.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index f5dcd3dd7..a19f9bedd 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -1762,6 +1762,24 @@ abstract class CI_DB_active_record extends CI_DB_driver { // -------------------------------------------------------------------- /** + * Truncate statement + * + * Generates a platform-specific truncate string from the supplied data + * + * If the database does not support the truncate() command, + * then this method maps to 'DELETE FROM table' + * + * @param string the table name + * @return string + */ + protected function _truncate($table) + { + return 'TRUNCATE '.$table; + } + + // -------------------------------------------------------------------- + + /** * Get DELETE query string * * Compiles a delete query string and returns the sql |