Upsert.php in Drupal 10
Same filename in this branch
- 10 core/lib/Drupal/Core/Database/Query/Upsert.php
- 10 core/lib/Drupal/Core/Database/Driver/sqlite/Upsert.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php
- 10 core/lib/Drupal/Core/Database/Driver/mysql/Upsert.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Upsert.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Upsert.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Upsert.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Upsert.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Upsert.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Upsert.php
Same filename and directory in other branches
Namespace
Drupal\Core\Database\Driver\mysqlFile
core/lib/Drupal/Core/Database/Driver/mysql/Upsert.phpView source
<?php
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\mysql\Driver\Database\mysql\Upsert as MysqlUpsert;
@trigger_error('\\Drupal\\Core\\Database\\Driver\\mysql\\Upsert is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The MySQL database driver has been moved to the mysql module. See https://www.drupal.org/node/3129492', E_USER_DEPRECATED);
/**
* MySQL implementation of \Drupal\Core\Database\Query\Upsert.
*
* @deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The MySQL
* database driver has been moved to the mysql module.
*
* @see https://www.drupal.org/node/3129492
*/
class Upsert extends MysqlUpsert {
}
Classes
Name | Description |
---|---|
Upsert Deprecated | MySQL implementation of \Drupal\Core\Database\Query\Upsert. |