-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efd4db0
commit 90455e5
Showing
5 changed files
with
96 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ testext | |
test/python/__pycache__/ | ||
.Rhistory | ||
data/generated | ||
__azurite*__.json | ||
__blobstorage__ | ||
.venv | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# name: test/sql/generated/azure.emulator | ||
# description: test delta scan on azure emulator data using secret | ||
# group: [delta_generated] | ||
|
||
require parquet | ||
|
||
require httpfs | ||
|
||
require azure | ||
|
||
require delta | ||
|
||
require-env GENERATED_AZURE_DATA_AVAILABLE | ||
|
||
statement ok | ||
CREATE SECRET azure_1 (TYPE AZURE, CONNECTION_STRING 'AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;DefaultEndpointsProtocol=http;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;TableEndpoint=http://127.0.0.1:10002/devstoreaccount1') | ||
|
||
# Run modified tpch q06 against the remote data | ||
query I rowsort q1 | ||
SELECT | ||
* | ||
FROM | ||
delta_scan('az://test-bucket-ceiveran/delta_testing/lineitem_sf0_01/delta_lake/') | ||
LIMIT 100 | ||
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
{ | ||
"dependencies": [ | ||
"azure-identity-cpp", | ||
"azure-storage-blobs-cpp", | ||
"azure-storage-files-datalake-cpp", | ||
"openssl" | ||
] | ||
} |