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
This is essentially the cast operation, but written as a function call. We can just bind this function to the existing operation.
Describe alternatives you've considered
In PostgreSQL, all proname from pg_proc are exposed as user-callable, which include internal names like int2 for casting to smallint and int48gt for int > bigint. We do not intend to support all such function names all together, unless required to integrate with an existing PostgreSQL tool.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Used by looker generated queries.
-- @jetjinser
Describe the solution you'd like
This is essentially the cast operation, but written as a function call. We can just bind this function to the existing operation.
Describe alternatives you've considered
In PostgreSQL, all
proname from pg_proc
are exposed as user-callable, which include internal names likeint2
for casting tosmallint
andint48gt
forint > bigint
. We do not intend to support all such function names all together, unless required to integrate with an existing PostgreSQL tool.Additional context
No response
The text was updated successfully, but these errors were encountered: