1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +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 fieldNames = key.split(/\./g)
const tableName = fieldNames[0] const tableName = fieldNames[0]
const columnName = fieldNames[1] const columnName = fieldNames[1]
if (typeof value === "string") {
value = `"${value}"`
}
// @ts-ignore // @ts-ignore
query = query[rawFnc]( query = query[rawFnc](
`"${tableName}"."${columnName}"::jsonb @> '["${value}"]'` `"${tableName}"."${columnName}"::jsonb @> '[${value}]'`
) )
}) })
} else if (this.client === SqlClients.MY_SQL) { } else if (this.client === SqlClients.MY_SQL) {