Skip to content

Commit

Permalink
add missing test
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Dec 19, 2024
1 parent 2a001d5 commit 829103e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/sql/cloud/gcs.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# name: test/sql/cloud/minio_local/gcs_r2.test
# description: test delta extension with GCS and R2
# group: [aws]

require httpfs

require parquet

require delta

statement ok
CREATE SECRET (
TYPE GCS,
KEY_ID 'SOME_KEY',
SECRET 'SOME SECRET'
);

statement error
select col1, col2 from delta_scan('gcs://some-bucket/some-table');
----
403

0 comments on commit 829103e

Please sign in to comment.