1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Handle numeric types Postgres

This commit is contained in:
Mel O'Hagan 2022-07-19 18:34:30 +01:00
parent 156eb8eb09
commit 6b81d3d727

View file

@ -234,9 +234,12 @@ class InternalBuilder {
const fieldNames = key.split(/\./g)
const tableName = fieldNames[0]
const columnName = fieldNames[1]
if (typeof value === "string") {
value = `"${value}"`
}
// @ts-ignore
query = query[rawFnc](
`"${tableName}"."${columnName}"::jsonb @> '["${value}"]'`
`"${tableName}"."${columnName}"::jsonb @> '[${value}]'`
)
})
} else if (this.client === SqlClients.MY_SQL) {