Skip to content

Commit 18288a0

Browse files
authored
Merge pull request #54 from vardbabayan/patch-1
fix: update formatting query-design.rst
2 parents d8094dd + 6486145 commit 18288a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/get-started/data-modeling/query-design.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ range queries. For example:
3838
PRIMARY KEY ((user_id, activity_date), log_time)
3939
);
4040
41-
In this table, here the partition is a combination of the ``user_id```
42-
and ``activity_date```, using a technique called "bucketing". This ensures that there
41+
In this table, here the partition is a combination of the ``user_id``
42+
and ``activity_date``, using a technique called "bucketing". This ensures that there
4343
is no unbounded growth within a partition, bucketed to a date. In addition, logs are
44-
ordered by ``log_time``` within each ``(user_id, activity_date)`` partition, making it
44+
ordered by ``log_time`` within each ``(user_id, activity_date)`` partition, making it
4545
efficient to query logs over a time range for a specific user.
4646

4747
Your query design should also be optimized for efficient and effective queries

0 commit comments

Comments
 (0)