Skip to content

Commit

Permalink
Use microsecond precision
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed May 12, 2024
1 parent 3da03e1 commit b9b425c
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@
Column("project_id", UInt(64)),
Column("profiler_id", UUID()),
Column("chunk_id", UUID()),
Column("start_timestamp", DateTime64(Modifiers(codecs=["DoubleDelta"]))),
Column("end_timestamp", DateTime64(Modifiers(codecs=["DoubleDelta"]))),
Column(
"start_timestamp",
DateTime64(size=6, modifiers=Modifiers(codecs=["DoubleDelta"])),
),
Column(
"end_timestamp", DateTime64(size=6, modifiers=Modifiers(codecs=["DoubleDelta"]))
),
Column("retention_days", UInt(16)),
Column("partition", UInt(16)),
Column("offset", UInt(64)),
Expand Down

0 comments on commit b9b425c

Please sign in to comment.