Important
Self-managed SingleStore will soon transition from version 9.1 RC to version 10. This new semantic versioning scheme will provide SingleStore with finer control over engine and feature releases that were not possible with the current versioning scheme.
In the interim, SingleStore 9.1 RC can be used to preview, evaluate, and provide feedback on the new and upcoming features in SingleStore 10 prior to its general availability. Ahead of this transition, SingleStore 9.0 is recommended for production workloads, which can later be upgraded to SingleStore 10.
BSON_ MERGE
On this page
The BSON_ function merges two BSON objects.
Syntax
BSON_MERGE(<obj1>, <obj2>)Argument
<obj1>, <obj2>: A BSON object or an expression that evaluates to a valid BSON object.
Return Type
A BSON object.
Remarks
-
If the BSON objects include fields with identical names, the resulting object has the value corresponding to the last merged object for each respective field.
-
If the input is SQL
NULL, BSONnullor BSONundefined, it is considered equivalent to an empty object({}).
Examples
Note: The following examples explicitly cast string to BSON for clarity.
SELECT BSON_MERGE(NULL, '{"a":1, "b":2}':>BSON):>JSON AS Result;
+---------------+
| Result |
+---------------+
| {"a":1,"b":2} |
+---------------+SELECT BSON_MERGE('{"a":1,"b":{"c":1}}':>BSON, '{"c":2,"d":{"e":1}}':>BSON):>JSON AS Result;
+---------------------------------------+
| Result |
+---------------------------------------+
| {"a":1,"b":{"c":1},"c":2,"d":{"e":1}} |
+---------------------------------------+SELECT BSON_MERGE('{"a":2, "b":2}':>BSON, '{"a": 3, "b":null, "c":3}':>BSON):>JSON AS Result;
+------------------------+
| Result |
+------------------------+
| {"a":3,"b":null,"c":3} |
+------------------------+Last modified: