Skip to content

Commit d8cc5cb

Browse files
committed
a correction
1 parent 5d54915 commit d8cc5cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/blobs/data-lake-storage-query-acceleration-how-to.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: normesta
66

77
ms.service: azure-data-lake-storage
88
ms.topic: how-to
9-
ms.date: 06/09/2022
9+
ms.date: 05/14/2024
1010
ms.author: normesta
1111
ms.reviewer: jamsbak
1212
ms.devlang: csharp
@@ -233,7 +233,7 @@ Get-QueryCsv $ctx $container $blob "SELECT * FROM BlobStorage WHERE _3 = 'Heming
233233

234234
### [.NET v12 SDK](#tab/dotnet)
235235

236-
The async method `BlobQuickQueryClient.QueryAsync` sends the query to the query acceleration API, and then streams the results back to the application as a [Stream](/dotnet/api/system.io.stream) object.
236+
The async method `BlockBlobClient.QueryAsync` sends the query to the query acceleration API, and then streams the results back to the application as a [Stream](/dotnet/api/system.io.stream) object.
237237

238238
```cs
239239
static async Task QueryHemingway(BlockBlobClient blob)
@@ -296,7 +296,7 @@ private static async Task DumpQueryCsv(BlockBlobClient blob, string query, bool
296296

297297
### [Java v12 SDK](#tab/java)
298298

299-
The method `BlobQuickQueryClient.openInputStream()` sends the query to the query acceleration API, and then streams the results back to the application as a `InputStream` object which can be read like any other InputStream object.
299+
The method `BlockBlobClient.openInputStream()` sends the query to the query acceleration API, and then streams the results back to the application as a `InputStream` object which can be read like any other InputStream object.
300300

301301
```java
302302
static void QueryHemingway(BlobClient blobClient) {

0 commit comments

Comments
 (0)