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
WITH foo(a, b) AS (values (1::int, 'a'::text), (2, 'b') ) SELECT*FROM foo;
that could translate to:
[%rapper
get_many
{sql|WITH foo(a, b) AS (values %list{%tup2{int, string}}) ...
|sql}]
The tup2, tup3, ... is not supported at this time though and although you can create a custom type with a tuple they generate only one parameter, so as an input type it doesn't work.
(as discussed on discord)
The text was updated successfully, but these errors were encountered:
I'd like to be able to write a query like this:
that could translate to:
The
tup2
,tup3
, ... is not supported at this time though and although you can create a custom type with a tuple they generate only one parameter, so as an input type it doesn't work.(as discussed on discord)
The text was updated successfully, but these errors were encountered: