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
{{ message }}
This repository was archived by the owner on Aug 12, 2020. It is now read-only.
which did work. Is it possible to get this work-around into the SQL translator? It doesn't look trivial because you don't want to use as.numeric(as.integer()) on something that's already double precision.
In the MonetDBLite backend to dbplyr, both automatic and explicit coercion of logical to double fails. For example, with
The following both fail with an error message
Server says 'ParseException:SQLparser:types boolean(1,0) and decimal(18,3) are not equal'Based on https://www.monetdb.org/pipermail/users-list/2013-May/006344.html I tried
which did work. Is it possible to get this work-around into the SQL translator? It doesn't look trivial because you don't want to use
as.numeric(as.integer())on something that's already double precision.