Skip to content

Commit

Permalink
deploy(clickhouse): Drop Beacon_p2p_attestation signature
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Jan 16, 2024
1 parent 00a83ae commit 550b64f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ALTER TABLE default.beacon_api_eth_v1_events_attestation_local ON CLUSTER '{cluster}'
ADD COLUMN signature String Codec(ZSTD(1)) AFTER attesting_validator_committee_index;

ALTER TABLE default.beacon_api_eth_v1_events_attestation ON CLUSTER '{cluster}'
ADD COLUMN signature String Codec(ZSTD(1)) AFTER attesting_validator_committee_index;

ALTER TABLE default.beacon_p2p_attestation_local ON CLUSTER '{cluster}'
ADD COLUMN signature String Codec(ZSTD(1)) AFTER attesting_validator_committee_index;

ALTER TABLE default.beacon_p2p_attestation ON CLUSTER '{cluster}'
ADD COLUMN signature String Codec(ZSTD(1)) AFTER attesting_validator_committee_index;
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
ALTER TABLE default.beacon_api_eth_v1_events_attestation_local ON CLUSTER '{cluster}'
DROP COLUMN signature;

ALTER TABLE default.beacon_api_eth_v1_events_attestation ON CLUSTER '{cluster}'
DROP COLUMN signature;


ALTER TABLE default.beacon_p2p_attestation_local ON CLUSTER '{cluster}'
DROP COLUMN signature;

ALTER TABLE default.beacon_p2p_attestation ON CLUSTER '{cluster}'
DROP COLUMN signature;

0 comments on commit 550b64f

Please sign in to comment.