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 due to the (very naive) type lookup that we do right now. The name of a string array in Postgres is _varchar. We need to be much more sophisticated.
The text was updated successfully, but these errors were encountered:
Usually we implement all the various `AsExpression` for refs in the
`expression_impls!` macro. However, that macro doesn't work with generics,
and we forgot to handle `Vec<T>` (I think I figured the slice impl was
enough for some reason).
I tried to write a test for this change, but there are actually several
other bugs that prevent me from testing this properly. See #65 & #66.
Fixes#63.
This is due to the (very naive) type lookup that we do right now. The name of a string array in Postgres is
_varchar
. We need to be much more sophisticated.The text was updated successfully, but these errors were encountered: