summaryrefslogtreecommitdiff
path: root/includes/database/pgsql
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-04-12 00:21:02 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2012-04-12 00:21:02 -0700
commit541cf80f64edcf1b520c20073455dd9c1557ecfe (patch)
tree5faca8390e799dab7ac3ac53ce8658e2ce1e33c5 /includes/database/pgsql
parent464808fb43c82ebb4beb3cd524651b4464315edf (diff)
downloadbrdo-541cf80f64edcf1b520c20073455dd9c1557ecfe.tar.gz
brdo-541cf80f64edcf1b520c20073455dd9c1557ecfe.tar.bz2
Issue #1171866 by sun, catch, Alan Evans, bvirtual, frob, btmash: Fixed Enforced fetching of fields/columns in lowercase breaks third-party integration.
Diffstat (limited to 'includes/database/pgsql')
-rw-r--r--includes/database/pgsql/database.inc2
1 files changed, 0 insertions, 2 deletions
diff --git a/includes/database/pgsql/database.inc b/includes/database/pgsql/database.inc
index d42a1cc3c..d80b47551 100644
--- a/includes/database/pgsql/database.inc
+++ b/includes/database/pgsql/database.inc
@@ -62,8 +62,6 @@ class DatabaseConnection_pgsql extends DatabaseConnection {
PDO::ATTR_EMULATE_PREPARES => TRUE,
// Convert numeric values to strings when fetching.
PDO::ATTR_STRINGIFY_FETCHES => TRUE,
- // Force column names to lower case.
- PDO::ATTR_CASE => PDO::CASE_LOWER,
);
parent::__construct($dsn, $connection_options['username'], $connection_options['password'], $connection_options['pdo']);