Skip to content

Commit c0375f1

Browse files
authored
Merge pull request #106428 from timsander1/master
add index utilization information to system function docs
2 parents 6032f26 + 6cb8b35 commit c0375f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+271
-46
lines changed

articles/cosmos-db/sql-query-abs.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the Absolute(ABS) SQL system function in Azure Cosm
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 12/02/2019
7+
ms.date: 03/04/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -38,8 +38,11 @@ SELECT ABS(-1) AS abs1, ABS(0) AS abs2, ABS(1) AS abs3
3838

3939
```json
4040
[{abs1: 1, abs2: 0, abs3: 1}]
41-
```
42-
41+
```
42+
43+
## Remarks
44+
45+
This system function will benefit from a [range index](index-policy.md#includeexclude-strategy).
4346

4447
## Next steps
4548

articles/cosmos-db/sql-query-acos.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the ACOS (arccosice) SQL system function in Azure C
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/03/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -40,6 +40,10 @@ SELECT ACOS(-1) AS acos
4040
[{"acos": 3.1415926535897931}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will not utilize the index.
46+
4347
## Next steps
4448

4549
- [Mathematical functions Azure Cosmos DB](sql-query-mathematical-functions.md)

articles/cosmos-db/sql-query-array-concat.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the Array Concat SQL system function in Azure Cosmo
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/03/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -40,6 +40,9 @@ SELECT ARRAY_CONCAT(["apples", "strawberries"], ["bananas"]) AS arrayConcat
4040
[{"arrayConcat": ["apples", "strawberries", "bananas"]}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will not utilize the index.
4346

4447
## Next steps
4548

articles/cosmos-db/sql-query-array-contains.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,12 @@ SELECT
6464
"b1": true,
6565
"b2": false,
6666
"b3": false
67-
}]
68-
```
69-
67+
}]
68+
```
69+
70+
## Remarks
71+
72+
This system function will benefit from a [range index](index-policy.md#includeexclude-strategy).
7073

7174
## Next steps
7275

articles/cosmos-db/sql-query-array-length.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the Array length SQL system function in Azure Cosmo
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/03/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -40,6 +40,9 @@ SELECT ARRAY_LENGTH(["apples", "strawberries", "bananas"]) AS len
4040
[{"len": 3}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will not utilize the index.
4346

4447
## Next steps
4548

articles/cosmos-db/sql-query-array-slice.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the Array slice SQL system function in Azure Cosmos
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/03/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -62,6 +62,10 @@ SELECT
6262
}]
6363
```
6464

65+
## Remarks
66+
67+
This system function will not utilize the index.
68+
6569
## Next steps
6670

6771
- [Array functions Azure Cosmos DB](sql-query-array-functions.md)

articles/cosmos-db/sql-query-asin.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the Arcsine (ASIN) SQL system function in Azure Cos
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/04/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -40,6 +40,10 @@ SELECT ASIN(-1) AS asin
4040
[{"asin": -1.5707963267948966}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will not utilize the index.
46+
4347
## Next steps
4448

4549
- [Mathematical functions Azure Cosmos DB](sql-query-mathematical-functions.md)

articles/cosmos-db/sql-query-atan.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the Arctangent (ATAN ) SQL system function in Azure
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/04/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -40,6 +40,9 @@ SELECT ATAN(-45.01) AS atan
4040
[{"atan": -1.5485826962062663}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will not utilize the index.
4346

4447
## Next steps
4548

articles/cosmos-db/sql-query-atn2.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about how the ATN2 SQL system function in Azure Cosmos DB ret
44
author: ginamr
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 09/13/2019
7+
ms.date: 03/03/2020
88
ms.author: girobins
99
ms.custom: query-reference
1010
---
@@ -40,6 +40,10 @@ SELECT ATN2(35.175643, 129.44) AS atn2
4040
[{"atn2": 1.3054517947300646}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will not utilize the index.
46+
4347
## Next steps
4448

4549
- [Mathematical functions Azure Cosmos DB](sql-query-mathematical-functions.md)

articles/cosmos-db/sql-query-ceiling.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ SELECT CEILING(123.45) AS c1, CEILING(-123.45) AS c2, CEILING(0.0) AS c3
4040
[{c1: 124, c2: -123, c3: 0}]
4141
```
4242

43+
## Remarks
44+
45+
This system function will benefit from a [range index](index-policy.md#includeexclude-strategy).
46+
4347
## Next steps
4448

4549
- [Mathematical functions Azure Cosmos DB](sql-query-mathematical-functions.md)

0 commit comments

Comments
 (0)