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
> **Note:** JSONB literals in INSERT and UPDATE statements work directly without explicit `::jsonb` type casts. The proxy infers the JSONB type from the target column and handles encryption transparently.
47
+
46
48
### JSON document structure
47
49
48
50
Examples assume an encrypted JSON document with the following structure:
@@ -591,6 +593,8 @@ SELECT jsonb_array_length(jsonb_path_query(encrypted_jsonb, '$.unknown')) FROM c
591
593
592
594
## Containment Operators
593
595
596
+
> **Note:** Containment operators work directly with JSONB literals without requiring explicit `::jsonb` type casts. The examples below use the simplified syntax intentionally.
597
+
594
598
### `@>` (Contains Operator)
595
599
596
600
Tests whether the left JSONB value contains the right JSONB value.
0 commit comments