Merge branch 'MDL-42775-master' of git://github.com/danpoltawski/moodle

This commit is contained in:
Marina Glancy 2013-11-08 16:37:55 +11:00
commit 2e84b4b323

View File

@ -3781,8 +3781,6 @@ class core_dml_testcase extends database_driver_testcase {
$this->assertNull($DB->get_field_sql($sql, array('paramvalue' => null)));
// Check there are not problems with whitespace strings.
$sql = "SELECT COALESCE(null, '', null) AS test" . $DB->sql_null_from_clause();
$this->assertSame('', $DB->get_field_sql($sql, array()));
$sql = "SELECT COALESCE(null, :paramvalue, null) AS test" . $DB->sql_null_from_clause();
$this->assertSame('', $DB->get_field_sql($sql, array('paramvalue' => '')));
}