You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
JSONB isn't correctly parsed for a SQL query
Argument with 'object' type should be parsed to string ofr inserts and updates, but databless tries to use JS object
Example, where jsonb attribute should be stringified JSON
'[ "ARTIST" ]', but instead it is a js objectknex:client acquired connection from pool: __knexUid1 +18msknex:query BEGIN; trx2 +22msknex:bindings undefined trx2 +22msknex:query update "users" set "full_name" = $1, "profile_tags" = $2 where "users"."id" = $3 returning * trx2 +10msknex:bindings [ 'test 2', [ 'ARTIST' ], '1' ] trx2 +10msknex:query ROLLBACK trx2 +20ms