You are here

public function Schema::DrupalSpecificFunctions in Drupal driver for SQL Server and SQL Azure 8

Same name and namespace in other branches
  1. 8.2 drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php \Drupal\Driver\Database\sqlsrv\Schema::DrupalSpecificFunctions()
  2. 3.0.x drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php \Drupal\Driver\Database\sqlsrv\Schema::drupalSpecificFunctions()

Returns a list of functions that are not available by default on SQL Server, but used in Drupal Core or contributed modules because they are available in other databases such as MySQL.

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php, line 94
Definition of Drupal\Driver\Database\sqlsrv\Schema

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function DrupalSpecificFunctions() {
  $functions = array(
    'SUBSTRING',
    'SUBSTRING_INDEX',
    'GREATEST',
    'MD5',
    'LPAD',
    'GROUP_CONCAT',
    'CONCAT',
    'IF',
    'CONNECTION_ID',
  );

  // Since SQL Server 2012 (11), there
  // is a native CONCAT implementation
  if ($this
    ->EngineVersionNumber() >= 11) {
    $functions = array_diff($functions, array(
      'CONCAT',
    ));
  }
  return $functions;
}