Merge.php

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

Namespace

Drupal\mysql\Driver\Database\mysql

File

core/modules/mysql/src/Driver/Database/mysql/Merge.php

View source
<?php

namespace Drupal\mysql\Driver\Database\mysql;

use Drupal\Core\Database\Query\Merge as QueryMerge;

/**
 * MySQL implementation of \Drupal\Core\Database\Query\Merge.
 */
class Merge extends QueryMerge {
    
    /**
     * {@inheritdoc}
     */
    public function __construct(Connection $connection, string $table, array $options = []) {
        // @todo Remove the __construct in Drupal 11.
        // @see https://www.drupal.org/project/drupal/issues/3256524
        parent::__construct($connection, $table, $options);
        unset($this->queryOptions['return']);
    }

}

Classes

Title Deprecated Summary
Merge MySQL implementation of \Drupal\Core\Database\Query\Merge.

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