Results 108 comments of Marius Grama

https://github.com/trinodb/trino/actions/runs/9276045576/job/25522303916?pr=21727 ``` Error: io.trino.plugin.iceberg.TestIcebergV2.testOptimizeDuringWriteOperations -- Time elapsed: 14.73 s

@ShubhamChaurasia pls rebase on top of `master` to address the code conflicts.

@ShubhamChaurasia pls rebase. We should be now in good shape to review the changes to eventually land this PR.

@ShubhamChaurasia do you still plan to continue with the work needed to land this PR?

@alzimmermsft thank you for your reply. Do note that the above mentioned method doesn't work when using OAuth2 authentication. As mentioned [here](https://learn.microsoft.com/en-us/rest/api/storageservices/get-account-information?tabs=shared-access-signatures#authorization) > This operation doesn't support OAuth-based authorization via...

Workaround ``` az storage account blob-service-properties show --account-name my-storage-account { "id": "/subscriptions/xxxxxxx-xxxxx-xxxx-xxxxx-xxxxxxxxxx/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/mystorageaccount/blobServices/default", ..... "resourceGroup": "myresourcegroup", .... "type": "Microsoft.Storage/storageAccounts/blobServices" } ``` https://stackoverflow.com/a/75711750 ``` az resource show --name mystorageaccount --resource-group myresourcegroup --resource-type...

With the above workaround aside, it feels though unnatural to go the above mentioned route just to know whether the container i'm dealing with is hierarchical or not and this...

Yet, another (maybe more elegant way) ``` ClientSecretCredential credential = new ClientSecretCredentialBuilder() .authorityHost(authorityHost) .tenantId(tenantId) .clientId(clientId) .clientSecret(secret) .build(); DataLakeDirectoryClient dataLakeDirectoryClient = client.getFileSystemClient(azureLocation.container().orElseThrow()).getDirectoryClient("/"); boolean isHnsEnabled = dataLakeDirectoryClient.exists(); ``` I'd like somebody from...

The failures in `ci/pt (default, suire-delta-lake-oss)` are related to your changes ``` | 2024-03-09 10:35:46 INFO: FAILURE / io.trino.tests.product.deltalake.TestHiveAndDeltaLakeRedirect.testHiveToPartitionedDeltaPartitionsRedirectFailure (Groups: profile_specific_tests, delta-lake-oss) took 1.5 seconds tests | 2024-03-09 10:35:46 SEVERE:...