From 293c2afaad1cc36ee9f3c1802f0a77f55de420f2 Mon Sep 17 00:00:00 2001 From: Mathieu Lefebvre Date: Wed, 18 Oct 2023 11:10:57 -0400 Subject: [PATCH] Final test --- .github/workflows/bun-test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml index 871fd09..4b3ff61 100644 --- a/.github/workflows/bun-test.yml +++ b/.github/workflows/bun-test.yml @@ -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