fix(query): include correlation_id in hydration query log_comment
Summary
- Hydration queries were missing the
correlation_idin their ClickHouselog_comment, making it harder to trace them back to the originating request insystem.query_log. - Base queries already included it (
gkg;correlation_id=<cid>;profiling_id=<uuid>), but hydration usedgkg;hydration;profiling_id=<uuid>. - Now hydration follows the same pattern:
gkg;hydration;correlation_id=<cid>;profiling_id=<uuid>.