summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorSammyK <sammyk@sammykmedia.com>2012-03-05 23:56:06 +0100
committerSammyK <sammyk@sammykmedia.com>2012-03-05 23:56:06 +0100
commit1bf8eebec1d2eb71f4553c9ec8ae82402b869887 (patch)
tree5efe2198e6b03e13e9f9d9cb00ecb8dd988b6897 /system/database
parentdc8dc745557c2f256abad50d32f5aae85e996b1e (diff)
Removed order_by() from PostgreSQL driver too.
Diffstat (limited to 'system/database')
-rw-r--r--system/database/drivers/postgre/postgre_driver.php10
1 files changed, 1 insertions, 9 deletions
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php
index 3fdcfa79e..5b248e9bc 100644
--- a/system/database/drivers/postgre/postgre_driver.php
+++ b/system/database/drivers/postgre/postgre_driver.php
@@ -587,16 +587,10 @@ class CI_DB_postgre_driver extends CI_DB {
$valstr[] = $key." = ".$val;
}
- $limit = '';
-
- $orderby = (count($orderby) >= 1)?' ORDER BY '.implode(", ", $orderby):'';
-
$sql = "UPDATE ".$table." SET ".implode(', ', $valstr);
$sql .= ($where != '' AND count($where) >=1) ? " WHERE ".implode(" ", $where) : '';
- $sql .= $orderby.$limit;
-
return $sql;
}
@@ -647,9 +641,7 @@ class CI_DB_postgre_driver extends CI_DB {
$conditions .= implode("\n", $like);
}
- $limit = '';
-
- return "DELETE FROM ".$table.$conditions.$limit;
+ return "DELETE FROM ".$table.$conditions;
}
// --------------------------------------------------------------------