diesel_full_text_search
diesel_full_text_search copied to clipboard
While trying to insert a row using a struct with a `TsConfiguration` field, i run into the following error: ```console cache lookup failed for text search configuration 12832 ``` The...
- [ ] Add a Readme - [ ] Add basic integration tests - [ ] Make it compile with `#[deny(missing_docs)]`
Is it possible to update or insert a `TsVector` value? I would expect to be able to do something like: ```rust use crate::schema::mytable::dsl as my; insert_into(my::mytable) .values(( my::some_text.eq(some_text), my::ts.eq(to_tsvector(some_text), ))...