Using scala slick, how would you generate a query filter using plain text? Context - I'm trying to filter on an array position column, doesn't appear to be supported by the slick extensions provided by https://github.com/tminglei/slick-pg.
I.e. we have an array field:
id UUID,
name varchar,
my_array_field varchar[],
...
And I'd like to be able to query by the sql equivalent of
SELECT FROM BLAH where name='somename' and my_array_field[2] = 'bar'
- Is there a way to just inject a text string as a filter? i.e. not the slick sql interpolator for a query, but just a filter element?
- Is there a slick or slick-pg representation of retrieving by an array element?
In the README of slick-pg you can see at the usage section an example of how to use the lib. You would need to mix
PgArraySupport
to the profile andArrayImplicits
to theAPI
.Then you can see the array column defined as
def tags = column[List[String]]("tags_arr")
and the methodbyTag
using a filter.filter(_.tags @& tags.toList.bind)
.There is also a README - Supported Array Oper/Functions you can check.