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
19
19
20
20
### 2. Performance Benchmarks
21
21
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
+
23
26
24
27
#### Queries with Leading Column Filters
25
28
@@ -47,7 +50,7 @@ EXPLAIN QUERY PLAN SELECT * FROM dummy_table WHERE col2 = 'val2' AND col3 = 'val
47
50
48
51
- ** Execution Time:** 556 ms
49
52
- ** Query Plan:** SCAN dummy_table
50
- ### Performance
53
+ #### Performance Summary
51
54
52
55
| Query Type | Execution Time | Query Plan |
53
56
| -----------------------------------| ----------------| -------------------------------------|
@@ -61,6 +64,8 @@ EXPLAIN QUERY PLAN SELECT * FROM dummy_table WHERE col2 = 'val2' AND col3 = 'val
61
64
62
65
## Best Practices
63
66
67
+ ** Faster query execution** can be achieved by following these best practices.
68
+
64
69
### Schema Definition
65
70
66
71
Define compound indexes to match your most frequent query patterns:
You can’t perform that action at this time.
0 commit comments