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
2625: Bug fix: the timestamp function should convert to a datetime type MySQL's timestamp function, despite its name, actually returns a datetime type and not a timestamp type.
MySQL example:
Note: We still need to add support for the second, optional parameter to timestamp().
Customer issue: #8236
2624: Use ctx.Done() as a faster check for ctx.Err()
The err call is noticeable for queries that read a lot of rows.
2623: Fix anti-join correctess bug
We had some strange logic for accepting a join anti-match, ripped it out and everything seems to be working correctly now.
2619: Assume text index comparisons are exact
We currently do not eliminate filters of the form column(VARCHAR) = text literal (longtext) when pushing filters into index lookups. The safety check is necessary at least for datetimes, spatial/fulltext and partial TEXT indexes. It's not clear whether it is necessary for full varchar indexes.
dolt side seems OK: #8218