core icon indicating copy to clipboard operation
core copied to clipboard

Implement the in and !in query operators for PostgreSQL

Open dstpierre opened this issue 3 years ago • 0 comments

The query operators in and !in which are suppose to look for presence or absence of an item in a list isn't implemented yet in the PostgreSQL database package.

In database/postgresql/query.go line:37, an implementation is required for these query operators to work.

As reference to find the way to implement for PostgreSQL's JSONB format: https://www.postgresql.org/docs/9.5/functions-json.html

This change once implemented can be tested via a test in the database/postgresql package using the QueryDocuments function for instance.

dstpierre avatar Aug 16 '22 09:08 dstpierre