Merge.php
Namespace
Drupal\sqlite\Driver\Database\sqliteFile
- 
              core/modules/ sqlite/ src/ Driver/ Database/ sqlite/ Merge.php 
View source
<?php
namespace Drupal\sqlite\Driver\Database\sqlite;
use Drupal\Core\Database\Query\Merge as QueryMerge;
/**
 * SQLite 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 | SQLite 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.
