Commit 4c5317e0 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge pull request #58 from maartendekeizer/master

Add getGuidExpression() to AbstractPlatform, already exists in MySQLPlatform
parents cd9eb828 8504947e
......@@ -376,6 +376,16 @@ abstract class AbstractPlatform
{
throw DBALException::notSupported(__METHOD__);
}
/**
* Returns global unique identifier
*
* @return string to get global unique identifier
*/
public function getGuidExpression()
{
throw DBALException::notSupported(__METHOD__);
}
/**
* Returns the average value of a column
......
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