-
Hi, I'm trying to do a very basic Insert. It works perfectly if I only insert "Id" and "Owner" which are both of type uuid (from the uuid crate). So these support the "into()" trait so it just converts these uuid values to whatever values_panic wants (I guess?). The problem is with my "categories" column which is an array of UUID in Postgres and a Vec in Rust. So how do I convert this Vec into whatever "values_panic" is looking for? Which according to the documentation takes a: IntoIterator<Item = SimpleExpr> Thank you!
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey @digevgreg, welcome! A sanity check: are you on SeaQuery 0.27 and enabled |
Beta Was this translation helpful? Give feedback.
Hey @digevgreg, welcome! A sanity check: are you on SeaQuery 0.27 and enabled
postgres-array
feature?