Skip to content

Commit 06e857b

Browse files
author
Hein
committed
Minor updates
1 parent a40a789 commit 06e857b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tutorials/client/data/compound-indexing-query-performance.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ These best practices are designed to assist developers in optimizing their schem
1919

2020
### 2. Performance Benchmarks
2121

22-
Using a table with 1999 columns and 50k entries:
22+
<Note>
23+
The following results were obtained using a table with 1999 columns and 50k entries
24+
</Note>
25+
2326

2427
#### Queries with Leading Column Filters
2528

@@ -47,7 +50,7 @@ EXPLAIN QUERY PLAN SELECT * FROM dummy_table WHERE col2 = 'val2' AND col3 = 'val
4750

4851
- **Execution Time:** 556 ms
4952
- **Query Plan:** SCAN dummy_table
50-
### Performance
53+
#### Performance Summary
5154

5255
| Query Type | Execution Time | Query Plan |
5356
|-----------------------------------|----------------|-------------------------------------|
@@ -61,6 +64,8 @@ EXPLAIN QUERY PLAN SELECT * FROM dummy_table WHERE col2 = 'val2' AND col3 = 'val
6164

6265
## Best Practices
6366

67+
**Faster query execution** can be achieved by following these best practices.
68+
6469
### Schema Definition
6570

6671
Define compound indexes to match your most frequent query patterns:

0 commit comments

Comments
 (0)