You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For historic reason I have table with two columns for date with different type - first is datetime, second is timestamp. In both columns were stored same values: 2018-07-27 10:35:13.
From Mysql console I can call this query with same result in both columns.
SELECT o.a AS dt, o.b AS ts FROM table_name o WHERE o.xxx = '123' ;
+---------------------+---------------------+
| dt | ts |
+---------------------+---------------------+
| 2018-07-27 10:35:13 | 2018-07-27 10:35:13 |
+---------------------+---------------------+
1 row in set (0.00 sec)
Same query called with dibi (fluent) results this:
Version: 3.2.2
Bug Description
For historic reason I have table with two columns for date with different type - first is
datetime
, second istimestamp
. In both columns were stored same values:2018-07-27 10:35:13
.From Mysql console I can call this query with same result in both columns.
Same query called with dibi (fluent) results this:
You can see that
ts
has diffrent value. This issue starts after end of summer time.Steps To Reproduce
Described in Bug Description
Expected Behavior
Same result as in Mysql console.
Possible Solution
I don't know. Code in
Result::normalize()
looks ok.The text was updated successfully, but these errors were encountered: