Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoolmer authored Nov 29, 2024
1 parent c958890 commit c49a7cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/concept/deduplication.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ timestamps, the cost of deduplication is negligible.

:::note

The ordering of how rows with duplicate timestamps are written on-disk differs when deduplication is enabled.
The on-disk ordering of rows with duplicate timestamps differs when deduplication is enabled.

- Without deduplication:
- the insertion order of each row will be preserved for rows with the same timestamp
Expand All @@ -56,7 +56,7 @@ For example:
```questdb-sql
DEDUP UPSERT keys(timestamp, symbol, price)
-- will sorted like this on-disk:
-- will be stored on-disk in an order like:
ORDER BY timestamp, symbol, price
```
Expand Down

0 comments on commit c49a7cb

Please sign in to comment.