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 would require full composite type support, especially the way you are describing with your array agg. Composite types are difficult and would likely require work in persistent to support.
Sometimes in postgresql you need to pass a pair of value to a function.
The example I have in mind is something like
array_agg ((foo.bar, foo.baz))
(the double parenthesis is required).It would be nice to have a
pair
function with signatureSqlExpr (Value a) -> SqlExpr (Value b) -> SqlExpr (Value (a, b))
to construct such valuesThe text was updated successfully, but these errors were encountered: