Skip to content

Commit 76653aa

Browse files
authored
Merge pull request #103898 from timsander1/master
fix quotes typos
2 parents 937e627 + f0b12f9 commit 76653aa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/cosmos-db/troubleshoot-query-performance.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Troubleshoot query issues when using Azure Cosmos DB
33
description: Learn how to identify, diagnose, and troubleshoot Azure Cosmos DB SQL query issues.
4-
author: ginamr
4+
author: timsander1
55
ms.service: cosmos-db
66
ms.topic: troubleshooting
7-
ms.date: 01/14/2020
8-
ms.author: girobins
7+
ms.date: 02/10/2020
8+
ms.author: tisande
99
ms.subservice: cosmosdb-sql
1010
ms.reviewer: sngun
1111
---
@@ -192,7 +192,7 @@ While queries with a filter and an `ORDER BY` clause will normally utilize a ran
192192
Query:
193193

194194
```sql
195-
SELECT * FROM c WHERE c.foodGroup = Soups, Sauces, and Gravies ORDER BY c._ts ASC
195+
SELECT * FROM c WHERE c.foodGroup = "Soups, Sauces, and Gravies" ORDER BY c._ts ASC
196196
```
197197

198198
Indexing policy:
@@ -302,7 +302,7 @@ For example, if we create a container with the partition key foodGroup, the foll
302302

303303
```sql
304304
SELECT * FROM c
305-
WHERE c.foodGroup = Soups, Sauces, and Gravies and c.description = "Mushroom, oyster, raw"
305+
WHERE c.foodGroup = "Soups, Sauces, and Gravies" and c.description = "Mushroom, oyster, raw"
306306
```
307307

308308
These queries would also be optimized by including the partition key in the query:
@@ -321,7 +321,7 @@ WHERE c.description = "Mushroom, oyster, raw"
321321

322322
```sql
323323
SELECT * FROM c
324-
WHERE c.foodGroup > Soups, Sauces, and Gravies and c.description = "Mushroom, oyster, raw"
324+
WHERE c.foodGroup > "Soups, Sauces, and Gravies" and c.description = "Mushroom, oyster, raw"
325325
```
326326

327327
## Filters on multiple properties

0 commit comments

Comments
 (0)