1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-09 09:05:23 +02:00

Merge branch '3.2.x'

This commit is contained in:
Marc Alexander 2018-11-26 21:19:47 +01:00
commit b851e708bb
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -60,6 +60,14 @@ abstract class mssql_base extends \phpbb\db\driver\driver
return $expression . " ESCAPE '\\'"; return $expression . " ESCAPE '\\'";
} }
/**
* {@inheritDoc}
*/
function cast_expr_to_bigint($expression)
{
return 'CONVERT(BIGINT, ' . $expression . ')';
}
/** /**
* Build db-specific query data * Build db-specific query data
* @access private * @access private