File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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
6671Define compound indexes to match your most frequent query patterns:
You can’t perform that action at this time.
0 commit comments