v.21.3New Feature

New event_time_microseconds Column in system.part_log Table

New event_time_microseconds column in system.part_log table. #20027 (Bharat Nallan).
Introduced a new event_time_microseconds column in the system.part_log table.

Why it matters

This feature adds higher precision timestamp data to system.part_log by recording event times in microseconds, enhancing the ability to analyze and troubleshoot part-related events with greater temporal accuracy.

How to use it

Users can query the event_time_microseconds column directly from the system.part_log table to obtain event timestamps with microsecond precision, for example:

sql<br>SELECT event_time_microseconds FROM system.part_log WHERE <condition>;<br>