Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ void testBatchDownloadChaining()
createExternalLink("test-url", 5L, Collections.emptyMap(), "2025-02-16T00:00:00Z");
ExternalLink linkForChunkIndex_6 =
createExternalLink("test-url", 6L, Collections.emptyMap(), "2025-02-16T00:00:00Z");

ArrowResultChunk mockChunk = mock(ArrowResultChunk.class);
when(mockChunkMap.get(anyLong())).thenReturn(mockChunk);
when(mockSession.getDatabricksClient()).thenReturn(mockClient);
// Mock the links for the first batch. The link futures for both chunks will be completed at the
// same time
Expand Down
Loading