File tree 4 files changed +9
-9
lines changed
source/reference/operator/query
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -84,13 +84,13 @@ The following query uses the :query:`$bitsAllClear` operator:
84
84
85
85
.. code-block:: javascript
86
86
87
- db.collection.find( { a: { $bitsAllClear: BinData(0, "ID ==") } } )
87
+ db.collection.find( { a: { $bitsAllClear: BinData(0, "IA ==") } } )
88
88
89
89
The query:
90
90
91
91
- Specifies ``0`` as the first value for :bsontype:`BinData
92
- <data_binary>`, which indicates ``ID ==`` is to be interpreted as
93
- binary. The base-64 value ``ID ==`` in binary is ``00100000``, which
92
+ <data_binary>`, which indicates ``IA ==`` should be interpreted as
93
+ binary. The base-64 value ``IA ==`` in binary is ``00100000``, which
94
94
has ``1`` in position 5.
95
95
96
96
- Uses :query:`$bitsAllClear` to return documents where the ``a`` field
Original file line number Diff line number Diff line change @@ -81,11 +81,11 @@ BinData Bitmask
81
81
82
82
The following query uses the :query:`$bitsAllSet` operator to test
83
83
whether field ``a`` has bits set at positions ``4`` and ``5``
84
- (the binary representation of ``BinData(0, "MC ==")`` is ``00110000``).
84
+ (the binary representation of ``BinData(0, "MA ==")`` is ``00110000``).
85
85
86
86
.. code-block:: javascript
87
87
88
- db.collection.find( { a: { $bitsAllSet: BinData(0, "MC ==") } } )
88
+ db.collection.find( { a: { $bitsAllSet: BinData(0, "MA ==") } } )
89
89
90
90
The query matches the following document:
91
91
Original file line number Diff line number Diff line change @@ -83,11 +83,11 @@ BinData Bitmask
83
83
~~~~~~~~~~~~~~~
84
84
The following query uses the :query:`$bitsAnyClear` operator to test
85
85
whether field ``a`` has any bits clear at positions ``4`` and ``5``
86
- (the binary representation of ``BinData(0, "MC ==")`` is ``00110000``).
86
+ (the binary representation of ``BinData(0, "MA ==")`` is ``00110000``).
87
87
88
88
.. code-block:: javascript
89
89
90
- db.collection.find( { a: { $bitsAnyClear: BinData(0, "MC ==") } } )
90
+ db.collection.find( { a: { $bitsAnyClear: BinData(0, "MA ==") } } )
91
91
92
92
The query matches the following documents:
93
93
Original file line number Diff line number Diff line change @@ -82,11 +82,11 @@ BinData Bitmask
82
82
83
83
The following query uses the :query:`$bitsAnySet` operator to test
84
84
whether field ``a`` has any bits set at positions ``4``, and ``5``
85
- (the binary representation of ``BinData(0, "MC ==")`` is ``00110000``).
85
+ (the binary representation of ``BinData(0, "MA ==")`` is ``00110000``).
86
86
87
87
.. code-block:: javascript
88
88
89
- db.collection.find( { a: { $bitsAnySet: BinData(0, "MC ==") } } )
89
+ db.collection.find( { a: { $bitsAnySet: BinData(0, "MA ==") } } )
90
90
91
91
The query matches the following documents:
92
92
You can’t perform that action at this time.
0 commit comments