-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathclickhouse_create_traces_table.sql
32 lines (32 loc) · 1.29 KB
/
clickhouse_create_traces_table.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
CREATE TABLE IF NOT EXISTS traces (
`chain_id` UInt256,
`block_number` UInt256,
`block_hash` FixedString(66),
`block_timestamp` DateTime CODEC(Delta, ZSTD),
`transaction_hash` FixedString(66),
`transaction_index` UInt64,
`subtraces` Int64,
`trace_address` Array(Int64),
`type` LowCardinality(String),
`call_type` LowCardinality(String),
`error` Nullable(String),
`from_address` FixedString(42),
`to_address` FixedString(42),
`gas` UInt64,
`gas_used` UInt64,
`input` String,
`output` Nullable(String),
`value` UInt256,
`author` Nullable(FixedString(42)),
`reward_type` LowCardinality(Nullable(String)),
`refund_address` Nullable(FixedString(42)),
`sign` Int8 DEFAULT 1,
`insert_timestamp` DateTime DEFAULT now(),
INDEX idx_block_timestamp block_timestamp TYPE minmax GRANULARITY 3,
INDEX idx_block_hash block_hash TYPE bloom_filter GRANULARITY 3,
INDEX idx_transaction_hash transaction_hash TYPE bloom_filter GRANULARITY 3,
INDEX idx_from_address from_address TYPE bloom_filter GRANULARITY 1,
INDEX idx_to_address to_address TYPE bloom_filter GRANULARITY 1,
) ENGINE = VersionedCollapsingMergeTree(sign, insert_timestamp)
ORDER BY (chain_id, block_number, transaction_hash, trace_address)
PARTITION BY chain_id;