You are here

protected function Schema::escapeDefaultValue in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::escapeDefaultValue()
  2. 9 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::escapeDefaultValue()

Return an escaped version of its parameter to be used as a default value on a column.

Parameters

mixed $value: The value to be escaped (int, float, null or string).

Return value

string|int|float The escaped value.

3 calls to Schema::escapeDefaultValue()
Schema::changeField in core/modules/pgsql/src/Driver/Database/pgsql/Schema.php
Change a field definition.
Schema::createFieldSql in core/modules/pgsql/src/Driver/Database/pgsql/Schema.php
Create an SQL string for a field to be used in table creation or alteration.
Schema::createFieldSql in core/modules/mysql/src/Driver/Database/mysql/Schema.php
Create an SQL string for a field to be used in table creation or alteration.

File

core/lib/Drupal/Core/Database/Schema.php, line 671

Class

Schema
Provides a base implementation for Database Schema.

Namespace

Drupal\Core\Database

Code

protected function escapeDefaultValue($value) {
  if (is_null($value)) {
    return 'NULL';
  }
  return is_string($value) ? $this->connection
    ->quote($value) : $value;
}