summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/postgre/postgre_driver.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-13 10:50:47 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-13 10:50:47 +0100
commit02e4cd7f31aff17d0f5f02e0d1ad0ef920ff93aa (patch)
treed2c3c9c960d9f61a3830639841d1b64252a34a7a /system/database/drivers/postgre/postgre_driver.php
parent83b2b1cd75d85d78ddcae1f9716984d8acdd7ca6 (diff)
Fix PostgreSQL WHERE with boolean values
Diffstat (limited to 'system/database/drivers/postgre/postgre_driver.php')
-rw-r--r--system/database/drivers/postgre/postgre_driver.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php
index a52777b1e..c2bc4d9ad 100644
--- a/system/database/drivers/postgre/postgre_driver.php
+++ b/system/database/drivers/postgre/postgre_driver.php
@@ -674,6 +674,23 @@ class CI_DB_postgre_driver extends CI_DB {
// --------------------------------------------------------------------
/**
+ * Is literal
+ *
+ * Determines if a string represents a literal value or a field name
+ *
+ * @param string $str
+ * @return bool
+ */
+ protected function _is_literal($str)
+ {
+ $str = trim($str);
+
+ return (empty($str) OR ctype_digit($str) OR $str[0] === "'" OR in_array($str, array('TRUE', 'FALSE'), TRUE));
+ }
+
+ // --------------------------------------------------------------------
+
+ /**
* Close DB Connection
*
* @return void