We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$inc
We get the following query:
UPDATE "db_test"."test_collection_1657995566780048000" SET _jsonb = _jsonb || json_build_object('v', COALESCE(_jsonb->'v')::numeric + 10)::jsonb || json_build_object('z', COALESCE(_jsonb->'z')::numeric + -2)::jsonb WHERE (CASE WHEN (_jsonb->'one' ? '$f') THEN (_jsonb->'one'->>'$f')::numeric ELSE (_jsonb->'one')::numeric END) = '1'
When we need to append the ->'$f' to properly update float fields.
->'$f'
This probably also applies to regular field updates.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We get the following query:
When we need to append the
->'$f'
to properly update float fields.This probably also applies to regular field updates.
The text was updated successfully, but these errors were encountered: