Postgres has all of

This commit is contained in:
Mel O'Hagan 2022-07-26 15:59:49 +01:00
parent cfb5c2d0ca
commit 76e4ffc04d
2 changed files with 7 additions and 8 deletions

View File

@ -176,10 +176,7 @@ class QueryBuilder {
}
let andStatement = `${builder.preprocess(value[0], { escape: true })}`
for (let i = 1; i < value.length; i++) {
andStatement += ` AND ${builder.preprocess(
value[i],
{ escape: true }
)}`
andStatement += ` AND ${builder.preprocess(value[i], { escape: true })}`
}
return `${key}:(${andStatement})`
}

View File

@ -230,16 +230,18 @@ class InternalBuilder {
const fnc = allOr ? "orWhere" : "where"
const rawFnc = `${fnc}Raw`
if (this.client === SqlClients.POSTGRES) {
iterate(filters.contains, (key: string, value: any) => {
iterate(filters.contains, (key: string, value: Array<any>) => {
const fieldNames = key.split(/\./g)
const tableName = fieldNames[0]
const columnName = fieldNames[1]
if (typeof value === "string") {
value = `"${value}"`
for (let i in value) {
if (typeof value[i] === "string") {
value[i] = `"${value[i]}"`
}
}
// @ts-ignore
query = query[rawFnc](
`"${tableName}"."${columnName}"::jsonb @> '[${value}]'`
`"${tableName}"."${columnName}"::jsonb @> '[${value.join(",")}]'`
)
})
} else if (this.client === SqlClients.MY_SQL) {