Skip to content

Commit

Permalink
Final test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Lefebvre committed Oct 18, 2023
1 parent f05029b commit 293c2af
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/bun-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
- name: "Insert mock data into Clickhouse DB for testing"
run: |
curl https://clickhouse.com/ | sh
sudo ./clickhouse install
echo "CREATE DATABASE clickhouse_sink" > create.sql
./clickhouse client --queries-file ./create.sql
echo "USE clickhouse_sink; CREATE TABLE TotalSupply (address FixedString(40), supply Nullable(String), block Nullable(String), timestamp Nullable(String)) ENGINE = MergeTree() ORDER BY (address); CREATE TABLE Contracts (address FixedString(40), name Nullable(String), symbol Nullable(String), decimals Nullable(String)) ENGINE = MergeTree() ORDER BY (address); CREATE TABLE balance_changes (contract FixedString(40), owner Nullable(String), old_balance Nullable(String), new_balance Nullable(String), transaction_id Nullable(String), block_num Nullable(String), timestamp Nullable(String)) ENGINE = MergeTree() ORDER BY (contract);" > setup.sql
Expand Down

0 comments on commit 293c2af

Please sign in to comment.