The result for hc is wrong. It returns HOURS() of the first argument of COALESCE() before its conversion to DATETIME. The expected result is to return hours after conversion, i,e. 8, like the hour part in the first column c.
The same problem is repeatable with CASE and its abbreviations:
SELECT
CASEWHENTRUETHENTIME'800:00:00'ELSE NOW() ENDAS c,
HOUR(CASEWHENTRUETHENTIME'800:00:00'ELSE NOW() END) AS hc;
{code:sql}
SELECT
COALESCE(TIME'800:00:00', NOW()) AS c,
HOUR(COALESCE(TIME'800:00:00',NOW())) AS hc;
{code}
{noformat}
+---------------------+------+
| c | hc |
+---------------------+------+
| 2018-03-22 08:00:00 | 800 |
+---------------------+------+
{noformat}
The result for {{hc}} is wrong. It returns {{HOURS()}} of the first argument of {{COALESCE()}} before its conversion to {{DATETIME}}. The expected result is to return hours after conversion, i,e. {{8}}, like the hour part in the first column {{c}}.
{code:sql}
SELECT
CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END AS c,
HOUR(CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END) AS hc;
{code}
{code:sql}
SELECT
IFNULL(TIME'800:00:00', NOW()) AS c,
HOUR(IFNULL(TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
IF(TRUE,TIME'800:00:00', NOW()) AS c,
HOUR(IF(TRUE,TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
COALESCE(TIME'800:00:00', NOW()) AS c,
HOUR(COALESCE(TIME'800:00:00',NOW())) AS hc;
{code}
{noformat}
+---------------------+------+
| c | hc |
+---------------------+------+
| 2018-03-22 08:00:00 | 800 |
+---------------------+------+
{noformat}
The result for {{hc}} is wrong. It returns {{HOURS()}} of the first argument of {{COALESCE()}} before its conversion to {{DATETIME}}. The expected result is to return hours after conversion, i,e. {{8}}, like the hour part in the first column {{c}}.
{code:sql}
SELECT
CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END AS c,
HOUR(CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END) AS hc;
{code}
{code:sql}
SELECT
IFNULL(TIME'800:00:00', NOW()) AS c,
HOUR(IFNULL(TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
IF(TRUE,TIME'800:00:00', NOW()) AS c,
HOUR(IF(TRUE,TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
COALESCE(TIME'800:00:00', NOW()) AS c,
HOUR(COALESCE(TIME'800:00:00',NOW())) AS hc;
{code}
{noformat}
+---------------------+------+
| c | hc |
+---------------------+------+
| 2018-03-22 08:00:00 | 800 |
+---------------------+------+
{noformat}
The result for {{hc}} is wrong. It returns {{HOURS()}} of the first argument of {{COALESCE()}} before its conversion to {{DATETIME}}. The expected result is to return hours after conversion, i,e. {{8}}, like the hour part in the first column {{c}}.
{code:sql}
SELECT
CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END AS c,
HOUR(CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END) AS hc;
{code}
{code:sql}
SELECT
IFNULL(TIME'800:00:00', NOW()) AS c,
HOUR(IFNULL(TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
IF(TRUE,TIME'800:00:00', NOW()) AS c,
HOUR(IF(TRUE,TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
COALESCE(TIME'800:00:00', NOW()) AS c,
HOUR(COALESCE(TIME'800:00:00',NOW())) AS hc;
{code}
{noformat}
+---------------------+------+
| c | hc |
+---------------------+------+
| 2018-03-22 08:00:00 | 800 |
+---------------------+------+
{noformat}
The result for {{hc}} is wrong. It returns {{HOURS()}} of the first argument of {{COALESCE()}} before its conversion to {{DATETIME}}. The expected result is to return hours after conversion, i,e. {{8}}, like the hour part in the first column {{c}}.
The same problem is repeatable with {{CASE}} and its abbreviations:
{code:sql}
SELECT
CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END AS c,
HOUR(CASE WHEN TRUE THEN TIME'800:00:00' ELSE NOW() END) AS hc;
{code}
{code:sql}
SELECT
IFNULL(TIME'800:00:00', NOW()) AS c,
HOUR(IFNULL(TIME'800:00:00', NOW())) AS hc;
{code}
{code:sql}
SELECT
IF(TRUE,TIME'800:00:00', NOW()) AS c,
HOUR(IF(TRUE,TIME'800:00:00', NOW())) AS hc;
{code}