Add more meta-characters for some MS platforms

The docs only talk about 2008 and up, not sure if those should be added
to 2005 too.
parent 3306fa7b
......@@ -116,4 +116,9 @@ class SQLServer2008Platform extends SQLServer2005Platform
{
return Keywords\SQLServer2008Keywords::class;
}
protected function getLikeWildcardCharacters() : iterable
{
return array_merge(parent::getLikeWildcardCharacters(), ['[', ']', '^']);
}
}
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