You are here

protected function SqlContentEntityStorage::isColumnSerial in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::isColumnSerial()
  2. 10 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::isColumnSerial()

Checks whether a field column should be treated as serial.

Parameters

$table_name: The name of the table the field column belongs to.

$schema_name: The schema name of the field column.

Return value

bool TRUE if the column is serial, FALSE otherwise.

1 call to SqlContentEntityStorage::isColumnSerial()
SqlContentEntityStorage::mapToStorageRecord in core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php
Maps from an entity object to the storage record.

File

core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 1087

Class

SqlContentEntityStorage
A content entity database storage implementation.

Namespace

Drupal\Core\Entity\Sql

Code

protected function isColumnSerial($table_name, $schema_name) {
  $result = FALSE;
  switch ($table_name) {
    case $this->baseTable:
      $result = $schema_name == $this->idKey;
      break;
    case $this->revisionTable:
      $result = $schema_name == $this->revisionKey;
      break;
  }
  return $result;
}