CASE, WHEN, ELSE support got added with #266, but it does not seem to support all use-cases.
In MySQL the following is valid SQL:
update tbl set col = case when 1 = 2 then 'val' else col end
With the current implementation you can't use dbr.Case in update statements and you can also not provide a column name in dbr.Else.
Please consider adding these two features.
CASE, WHEN, ELSE support got added with #266, but it does not seem to support all use-cases.
In MySQL the following is valid SQL:
With the current implementation you can't use
dbr.Casein update statements and you can also not provide a column name indbr.Else.Please consider adding these two features.