LOAD 'chdb_hook'; -- Simple COPY FROM without credentials. CREATE TABLE s3_times ( id INT PRIMARY KEY, months INT NOT NULL, days INT NOT NULL ); -- Try S3 URI. COPY s3_times FROM 's3://datasets-documentation/my-test-bucket-768/some_prefix/some_file_1.csv'; SELECT * FROM s3_times ORDER BY id; id | months | days ----+--------+------ 1 | 2 | 3 3 | 2 | 1 4 | 5 | 6 (3 rows) -- Try Object URL: TRUNCATE s3_times; COPY s3_times FROM 's3://datasets-documentation.s3.eu-west-3.amazonaws.com/my-test-bucket-768/some_prefix/some_file_1.csv'; SELECT * FROM s3_times ORDER BY id; id | months | days ----+--------+------ 1 | 2 | 3 3 | 2 | 1 4 | 5 | 6 (3 rows) \set ECHO errors SKIP: No AWS credentials found in the environment