Skip to content

Commit

Permalink
add function columns
Browse files Browse the repository at this point in the history
  • Loading branch information
viglia committed Sep 12, 2024
1 parent 03c8760 commit 7b1a636
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
Column("profiler_id", UUID(Modifiers(nullable=True, low_cardinality=False))),
# transaction_name is nullable since this will only be used by transaction-based profiling
Column("transaction_name", String(Modifiers(nullable=True, low_cardinality=True))),
Column("fingerprint", UInt(64)),
Column("name", String()),
Column("package", String()),
Column("thread_id", String()),
Column("min", Float(64)),
Column("max", Float(64)),
Expand Down

0 comments on commit 7b1a636

Please sign in to comment.