Skip to content

Commit

Permalink
Add trimFactor to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
adriandole committed May 31, 2024
1 parent ffcdc41 commit 0990a9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions source/client-side-encryption/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2911,6 +2911,7 @@ skipped.
```typescript
class RangeOpts {
trimFactor: 1,
sparsity: 1,
}
```
Expand All @@ -2921,6 +2922,7 @@ skipped.
class RangeOpts {
min: { "$numberDecimal": "0" },
max: { "$numberDecimal": "200" },
trimFactor: 1,
sparsity: 1,
precision: 2,
}
Expand All @@ -2930,6 +2932,7 @@ skipped.
```typescript
class RangeOpts {
trimFactor: 1
sparsity: 1,
}
```
Expand All @@ -2940,6 +2943,7 @@ skipped.
class RangeOpts {
min: { "$numberDouble": "0" },
max: { "$numberDouble": "200" },
trimFactor: 1,
sparsity: 1,
precision: 2,
}
Expand All @@ -2951,6 +2955,7 @@ skipped.
class RangeOpts {
min: {"$date": { "$numberLong": "0" } } ,
max: {"$date": { "$numberLong": "200" } },
trimFactor: 1,
sparsity: 1,
}
```
Expand All @@ -2961,6 +2966,7 @@ skipped.
class RangeOpts {
min: {"$numberInt": "0" } ,
max: {"$numberInt": "200" },
trimFactor: 1,
sparsity: 1,
}
```
Expand All @@ -2971,6 +2977,7 @@ skipped.
class RangeOpts {
min: {"$numberLong": "0" } ,
max: {"$numberLong": "200" },
trimFactor: 1,
sparsity: 1,
}
```
Expand Down

0 comments on commit 0990a9a

Please sign in to comment.