diff options
Diffstat (limited to 'includes/database')
-rw-r--r-- | includes/database/pgsql/database.inc | 1 | ||||
-rw-r--r-- | includes/database/query.inc | 2 | ||||
-rw-r--r-- | includes/database/select.inc | 7 |
3 files changed, 1 insertions, 9 deletions
diff --git a/includes/database/pgsql/database.inc b/includes/database/pgsql/database.inc index f6ce65051..85a8e8315 100644 --- a/includes/database/pgsql/database.inc +++ b/includes/database/pgsql/database.inc @@ -14,7 +14,6 @@ class DatabaseConnection_pgsql extends DatabaseConnection { protected $transactionSupport; - //protected $lastInsertInfo = NULL; public function __construct(Array $connection_options = array()) { diff --git a/includes/database/query.inc b/includes/database/query.inc index 458c87d24..9c7fdfcf4 100644 --- a/includes/database/query.inc +++ b/includes/database/query.inc @@ -630,7 +630,7 @@ class MergeQuery extends Query { // this method with database-specific logic, so this function serves only // as a fallback to aid developers of new drivers. - //Wrap multiple queries in a transaction, if the database supports it. + // Wrap multiple queries in a transaction, if the database supports it. $transaction = $this->connection->startTransaction(); // Manually check if the record already exists. diff --git a/includes/database/select.inc b/includes/database/select.inc index 7aa45006b..3d1074773 100644 --- a/includes/database/select.inc +++ b/includes/database/select.inc @@ -44,13 +44,6 @@ class SelectQuery extends Query implements QueryConditionInterface, QueryAlterab protected $tables = array(); /** - * The values to insert into the prepared statement of this query. - * - * @var array - */ - //protected $arguments = array(); - - /** * The fields by which to order this query. * * This is an associative array. The keys are the fields to order, and the value |