summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/postgre
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-04-09 12:03:11 +0200
committerAndrey Andreev <narf@bofh.bg>2012-04-09 12:03:11 +0200
commita254836a611e8f555ea4bbc84e500c7040ebae4e (patch)
tree4f3396577147e1e3af98a0ca5a69eb0c65f4b318 /system/database/drivers/postgre
parentc01d31685ad365c6bf3e833c03d7f8a3402c0ec7 (diff)
Add back limit parameter to Interbase and PostgreSQL _delete() due to CI_DB_active_record being abstract
Diffstat (limited to 'system/database/drivers/postgre')
-rw-r--r--system/database/drivers/postgre/postgre_driver.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php
index b85049d04..14259be52 100644
--- a/system/database/drivers/postgre/postgre_driver.php
+++ b/system/database/drivers/postgre/postgre_driver.php
@@ -517,9 +517,10 @@ class CI_DB_postgre_driver extends CI_DB {
* @param string the table name
* @param array the where clause
* @param array the like clause
+ * @param string the limit clause (ignored)
* @return string
*/
- protected function _delete($table, $where = array(), $like = array())
+ protected function _delete($table, $where = array(), $like = array(), $limit = FALSE)
{
$conditions = array();