Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions source/data-formats/decimal128.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ Decimal128
Overview
--------

MongoDB 3.4 introduced support for a Decimal128 BSON type,
which is a 128-bit decimal-based
floating-point value capable of emulating decimal rounding with exact precision.
This functionality is intended for applications that handle :manual:`monetary
data </tutorial/model-monetary-data>`, such as financial and tax computations.
Decimal128 BSON type is a 128-bit decimal-based floating-point value capable
of emulating decimal rounding with exact precision. This functionality is
intended for applications that handle :manual:`monetary data </tutorial/model-monetary-data>`,
such as financial and tax computations.

The :php:`MongoDB\BSON\Decimal128 <mongodb-bson-decimal128>` class may be used
to work with this type in PHP.
Expand Down
6 changes: 1 addition & 5 deletions source/includes/mongodb-compatibility-table-php.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
- MongoDB 4.2
- MongoDB 4.0
- MongoDB 3.6
- MongoDB 3.4

* - ext + lib 1.20
- ✓
Expand All @@ -23,7 +22,6 @@
- ✓
- ✓
-
-

* - ext + lib 1.16 to 1.19
- ⊛
Expand All @@ -34,7 +32,6 @@
- ✓
- ✓
- ✓
-

* - ext + lib 1.15
- ⊛
Expand All @@ -44,5 +41,4 @@
- ✓
- ✓
- ✓
- ✓
-
- ✓
8 changes: 1 addition & 7 deletions source/reference/method/MongoDBDatabase-createCollection.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ Parameters
For replica sets, do not set ``autoIndexId`` to ``false``.

.. deprecated:: 1.4
This option has been deprecated since MongoDB 3.2. As of MongoDB
4.0, this option cannot be ``false`` when creating a replicated
As of MongoDB 4.0, this option cannot be ``false`` when creating a replicated
collection (i.e. a collection outside of the ``local`` database in
any mongod mode).

Expand Down Expand Up @@ -148,11 +147,6 @@ Parameters

Defaults to ``1``.

MongoDB 3.0 and later ignores the ``usePowerOf2Sizes`` flag. See
:manual:`collMod </reference/command/collMod>` and
:manual:`db.createCollection()
</reference/method/db.createCollection>` for more information.

* - indexOptionDefaults
- array|object
- Allows users to specify a default configuration for indexes when
Expand Down
3 changes: 1 addition & 2 deletions source/tutorial/collation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ Collation
Overview
--------

MongoDB 3.4 introduced support for :manual:`collations
</reference/collation/>`, which provide a set of rules to comply with the
:manual:`Collations </reference/collation/>` provide a set of rules to comply with the
conventions of a particular language when comparing strings.

For example, in Canadian French, the last accent in a given word determines the
Expand Down
Loading