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
Ideally, FunSQL should provide all built-in functions and operators, for every supported database engine. Since every engine has its own list of supported functions, these declarations could be added to engine-specific modules:
using FunSQL, FunSQL.PostgreSQL
@funsqlselect(as_integer("0")) #-> SELECT ('0'::integer)
The text was updated successfully, but these errors were encountered:
For use with
@funsql
macro, FunSQL currently exports a small number of common SQL functions and operators:Any SQL function not in these lists has to be declared like this:
Ideally, FunSQL should provide all built-in functions and operators, for every supported database engine. Since every engine has its own list of supported functions, these declarations could be added to engine-specific modules:
The text was updated successfully, but these errors were encountered: