Skip to content

Commit d702a21

Browse files
authored
Update analytical-store-introduction.md
1 parent f0d5633 commit d702a21

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

articles/cosmos-db/analytical-store-introduction.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ The following constraints are applicable on the operational data in Azure Cosmos
141141
{"id": 2, "name": "john"}
142142
```
143143

144-
145144
* The first document of the collection defines the initial analytical store schema.
146145
* Documents with more properties than the initial schema will generate new columns in analytical store.
147146
* Columns can't be removed.
@@ -298,9 +297,9 @@ salary: 1000000
298297

299298
The leaf property `streetNo` within the nested object `address` will be represented in the analytical store schema as a column `address.object.streetNo.int32`. The datatype is added as a suffix to the column. This way, if another document is added to the transactional store where the value of leaf property `streetNo` is "123" (note it's a string), the schema of the analytical store automatically evolves without altering the type of a previously written column. A new column added to the analytical store as `address.object.streetNo.string` where this value of "123" is stored.
300299

301-
##### Data type to suffix map
300+
##### Data type to suffix map for full fidelity schema
302301

303-
Here's a map of all the property data types and their suffix representations in the analytical store:
302+
Here's a map of all the property data types and their suffix representations in the analytical store in full fidelity schema representation:
304303

305304
|Original data type |Suffix |Example |
306305
|---------|---------|---------|
@@ -313,7 +312,6 @@ Here's a map of all the property data types and their suffix representations in
313312
|NULL | ".NULL" | NULL|
314313
|String| ".string" | "ABC"|
315314
|Timestamp | ".timestamp" | Timestamp(0, 0)|
316-
|DateTime |".date" | ISODate("2020-08-21T07:43:07.375Z")|
317315
|ObjectId |".objectId" | ObjectId("5f3f7b59330ec25c132623a2")|
318316
|Document |".object" | {"a": "a"}|
319317

0 commit comments

Comments
 (0)