diesel_full_text_search icon indicating copy to clipboard operation
diesel_full_text_search copied to clipboard

Results 4 diesel_full_text_search issues
Sort by recently updated
recently updated
newest added

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)]`

help wanted

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), ))...