Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 authored and carlopi committed May 13, 2024
1 parent 73edcdf commit 3082282
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/sql/aws_minio_secret.test
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CREATE SECRET my_aws_secret (
);

query I
SELECT which_secret('s3://test-bucket/aws_minio_secret/secret1/test.csv', 's3')
SELECT name FROM which_secret('s3://test-bucket/aws_minio_secret/secret1/test.csv', 's3')
----
my_aws_secret

Expand Down
2 changes: 1 addition & 1 deletion test/sql/aws_secret_gcs.test
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CREATE SECRET s1 (
);

query I
SELECT which_secret('gcs://haha/hoehoe.parkoe', 'gcs')
SELECT name FROM which_secret('gcs://haha/hoehoe.parkoe', 'gcs')
----
s1

Expand Down
2 changes: 1 addition & 1 deletion test/sql/aws_secret_r2.test
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CREATE SECRET s1 (
);

query I
SELECT which_secret('r2://haha/hoehoe.parkoe', 'r2')
SELECT name FROM which_secret('r2://haha/hoehoe.parkoe', 'r2')
----
s1

Expand Down

0 comments on commit 3082282

Please sign in to comment.