Changes between Version 4 and Version 5 of OtherTopics
- Timestamp:
- 07/08/26 21:22:15 (4 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OtherTopics
v4 v5 19 19 [[Image(ss1_before.png)]] 20 20 21 * '''After Index Creation :'''22 * Plan Output: ` Index Scan` processing nodes filtering via the composite predicate.21 * '''After Index Creation (Optimized Time-Window Filter):''' 22 * Plan Output: `Bitmap Index Scan using idx_nc_timestamp_comp on network_connections nc`. 23 23 * Execution Time: 3.271 ms 24 24 [[Image(ss1_after.2.png)]] 25 25 26 26 * '''Index Usage Verification:''' Yes, the PostgreSQL engine bypassed raw relational sequential evaluation and bound query execution directly via index nodes inside the initial windowed CTE materialization. 27 * '''Conclusion:''' Performance gains lowered overall query evaluation overhead, drastically reducing execution processing latency.27 * '''Conclusion:''' Performance scaled by over '''82%''', successfully shifting execution path to targeted bitmap index scans. 28 28 29 29 ---
