Upsert.php

Same filename in this branch
  1. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Upsert.php
  2. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Upsert.php
  3. 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Upsert.php
  4. 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Upsert.php
  5. 8.9.x core/lib/Drupal/Core/Database/Query/Upsert.php
Same filename in other branches
  1. 9 core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php
  2. 9 core/modules/mysql/src/Driver/Database/mysql/Upsert.php
  3. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Upsert.php
  4. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Upsert.php
  5. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Upsert.php
  6. 9 core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php
  7. 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Upsert.php
  8. 9 core/lib/Drupal/Core/Database/Driver/sqlite/Upsert.php
  9. 9 core/lib/Drupal/Core/Database/Driver/mysql/Upsert.php
  10. 9 core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php
  11. 9 core/lib/Drupal/Core/Database/Query/Upsert.php
  12. 10 core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php
  13. 10 core/modules/mysql/src/Driver/Database/mysql/Upsert.php
  14. 10 core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php
  15. 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Upsert.php
  16. 10 core/lib/Drupal/Core/Database/Driver/sqlite/Upsert.php
  17. 10 core/lib/Drupal/Core/Database/Driver/mysql/Upsert.php
  18. 10 core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php
  19. 10 core/lib/Drupal/Core/Database/Query/Upsert.php
  20. 11.x core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php
  21. 11.x core/modules/mysql/src/Driver/Database/mysql/Upsert.php
  22. 11.x core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php
  23. 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Upsert.php
  24. 11.x core/lib/Drupal/Core/Database/Query/Upsert.php

Namespace

Drupal\Core\Database\Driver\pgsql

File

core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php

View source
<?php

namespace Drupal\Core\Database\Driver\pgsql;

use Drupal\Core\Database\Query\Upsert as QueryUpsert;

/**
 * PostgreSQL implementation of \Drupal\Core\Database\Query\Upsert.
 */
class Upsert extends QueryUpsert {
    
    /**
     * {@inheritdoc}
     */
    public function execute() {
        if (!$this->preExecute()) {
            return NULL;
        }
        // Default options for upsert queries.
        $this->queryOptions += [
            'throw_exception' => TRUE,
        ];
        // Default fields are always placed first for consistency.
        $insert_fields = array_merge($this->defaultFields, $this->insertFields);
        $table = $this->connection
            ->escapeTable($this->table);
        // We have to execute multiple queries, therefore we wrap everything in a
        // transaction so that it is atomic where possible.
        $transaction = $this->connection
            ->startTransaction();
        try {
            // First, lock the table we're upserting into.
            $this->connection
                ->query('LOCK TABLE {' . $table . '} IN SHARE ROW EXCLUSIVE MODE', [], $this->queryOptions);
            // Second, delete all items first so we can do one insert.
            $unique_key_position = array_search($this->key, $insert_fields);
            $delete_ids = [];
            foreach ($this->insertValues as $insert_values) {
                $delete_ids[] = $insert_values[$unique_key_position];
            }
            // Delete in chunks when a large array is passed.
            foreach (array_chunk($delete_ids, 1000) as $delete_ids_chunk) {
                $this->connection
                    ->delete($this->table, $this->queryOptions)
                    ->condition($this->key, $delete_ids_chunk, 'IN')
                    ->execute();
            }
            // Third, insert all the values.
            $insert = $this->connection
                ->insert($this->table, $this->queryOptions)
                ->fields($insert_fields);
            foreach ($this->insertValues as $insert_values) {
                $insert->values($insert_values);
            }
            $insert->execute();
        } catch (\Exception $e) {
            // One of the queries failed, rollback the whole batch.
            $transaction->rollBack();
            // Rethrow the exception for the calling code.
            throw $e;
        }
        // Re-initialize the values array so that we can re-use this query.
        $this->insertValues = [];
        // Transaction commits here where $transaction looses scope.
        return TRUE;
    }
    
    /**
     * {@inheritdoc}
     */
    public function __toString() {
        // Nothing to do.
    }

}

Classes

Title Deprecated Summary
Upsert PostgreSQL implementation of \Drupal\Core\Database\Query\Upsert.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.