Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jsonb inserted incorrectly when used with slonik #5

Open
random-string opened this issue Mar 1, 2024 · 0 comments
Open

jsonb inserted incorrectly when used with slonik #5

random-string opened this issue Mar 1, 2024 · 0 comments

Comments

@random-string
Copy link

The following query inserts a JSON object to a table with a JSONB column.

UPDATE public.property_history
SET attributes = ${sql.jsonb(attributes ?? null)}, status = ${status}
WHERE id = ${id}

When utilizing slonik using

await createPool(pgConnString!, {typeParsers});

it inserts correctly as an object.

However the same query inserts the object as a stringified string when using:

const PgPool = createPostgresBridge(postgres);
await createPool(pgConnString!, {PgPool, typeParsers});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant