summaryrefslogtreecommitdiff
path: root/includes/database/pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-26 14:08:44 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-26 14:08:44 +0000
commit6d3d75fe4b8fb1c862010cc87839f1d9ede43265 (patch)
treeb801374bf914048d8659cb8df8f014f1486ee5ec /includes/database/pgsql
parent8851b57acf1391fe1dbfab4877c1fdc7d63aac63 (diff)
downloadbrdo-6d3d75fe4b8fb1c862010cc87839f1d9ede43265.tar.gz
brdo-6d3d75fe4b8fb1c862010cc87839f1d9ede43265.tar.bz2
- Removing whitespace.
Diffstat (limited to 'includes/database/pgsql')
-rw-r--r--includes/database/pgsql/database.inc2
-rw-r--r--includes/database/pgsql/schema.inc6
2 files changed, 4 insertions, 4 deletions
diff --git a/includes/database/pgsql/database.inc b/includes/database/pgsql/database.inc
index 6e39bb232..c9dd63a06 100644
--- a/includes/database/pgsql/database.inc
+++ b/includes/database/pgsql/database.inc
@@ -16,7 +16,7 @@ class DatabaseConnection_pgsql extends DatabaseConnection {
public function __construct(array $connection_options = array()) {
// This driver defaults to transaction support, except if explicitly passed FALSE.
$this->transactionSupport = !isset($connection_options['transactions']) || ($connection_options['transactions'] !== FALSE);
-
+
// Transactional DDL is always available in PostgreSQL,
// but we'll only enable it if standard transactions are.
$this->transactionalDDLSupport = $this->transactionSupport;
diff --git a/includes/database/pgsql/schema.inc b/includes/database/pgsql/schema.inc
index 00f4b9fef..f467f0af1 100644
--- a/includes/database/pgsql/schema.inc
+++ b/includes/database/pgsql/schema.inc
@@ -115,9 +115,9 @@ class DatabaseSchema_pgsql extends DatabaseSchema {
if (!empty($field['unsigned'])) {
// Unsigned datatypes are not supported in PostgreSQL 8.3. In MySQL,
// they are used to ensure a positive number is inserted and it also
- // doubles the maximum integer size that can be stored in a field.
- // The PostgreSQL schema in Drupal creates a check constraint
- // to ensure that a value inserted is >= 0. To provide the extra
+ // doubles the maximum integer size that can be stored in a field.
+ // The PostgreSQL schema in Drupal creates a check constraint
+ // to ensure that a value inserted is >= 0. To provide the extra
// integer capacity, here, we bump up the column field size.
if (!isset($map)) {
$map = $this->getFieldTypeMap();