Commit 061045d4 authored by Steve Müller's avatar Steve Müller

Remove SQL Server 2012 specific keywords from base SQL Server keywords list.

parent 1ce755d9
...@@ -32,11 +32,17 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -32,11 +32,17 @@ namespace Doctrine\DBAL\Platforms\Keywords;
*/ */
class MsSQLKeywords extends KeywordList class MsSQLKeywords extends KeywordList
{ {
/**
* {@inheritdoc}
*/
public function getName() public function getName()
{ {
return 'MsSQL'; return 'MsSQL';
} }
/**
* {@inheritdoc}
*/
protected function getKeywords() protected function getKeywords()
{ {
return array( return array(
...@@ -238,13 +244,7 @@ class MsSQLKeywords extends KeywordList ...@@ -238,13 +244,7 @@ class MsSQLKeywords extends KeywordList
'CURRENT_TIME', 'CURRENT_TIME',
'GRANT', 'GRANT',
'OPENDATASOURCE', 'OPENDATASOURCE',
'SELECT', 'SELECT'
'SEMANTICKEYPHRASETABLE',
'SEMANTICSIMILARITYDETAILSTABLE',
'SEMANTICSIMILARITYTABLE',
'TRY_CONVERT',
'WITHIN',
'SEQUENCE'
); );
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment