In PostgreSQL a few extra operators exists for fields like WHERE, specifically for jsonb fields.
Because of Binary not being public, I have to do a work around, where I instantiate a different function (like sql.lt) and then change the operator, as described in https://github.com/Suor/sql-bricks-postgres/issues/5. Would it be possible to make Binary public, to allow for adding new operators in extensions of sql-bricks, like sql-bricks-postgres?
In PostgreSQL a few extra operators exists for fields like WHERE, specifically for jsonb fields.
Because of
Binary
not being public, I have to do a work around, where I instantiate a different function (like sql.lt) and then change the operator, as described in https://github.com/Suor/sql-bricks-postgres/issues/5. Would it be possible to make Binary public, to allow for adding new operators in extensions of sql-bricks, like sql-bricks-postgres?