LOAD 'chdb_hook'; -- Simple COPY FROM without credentials. CREATE TABLE gcs_times ( id INT PRIMARY KEY, months INT NOT NULL, days INT NOT NULL ); -- Try Public URL. COPY gcs_times FROM 'gcs://storage.googleapis.com/clickhouse_public_datasets/my-test-bucket-768/data.csv.gz'; SELECT * FROM gcs_times ORDER BY id; id | months | days ----+--------+------ 1 | 2 | 3 3 | 2 | 1 4 | 5 | 6 (3 rows) -- Try Cloud Storage URI. TRUNCATE gcs_times; COPY gcs_times FROM 'gcs://clickhouse_public_datasets/my-test-bucket-768/data.csv.gz'; SELECT * FROM gcs_times ORDER BY id; id | months | days ----+--------+------ 1 | 2 | 3 3 | 2 | 1 4 | 5 | 6 (3 rows) \set ECHO errors SKIP: No GCP credentials found in the environment