Skip to content

Commit

Permalink
Add arrow tests (#1291)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mknister authored Mar 14, 2023
1 parent 7cd122d commit 6a7bfef
Show file tree
Hide file tree
Showing 4 changed files with 407 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public int getCurrentRowInRecordBatch() {
* merge arrow result chunk with more than one batches into one record batch (Only used for the
* first chunk when client side sorting is required)
*/
private void mergeBatchesIntoOne() throws SnowflakeSQLException {
public void mergeBatchesIntoOne() throws SnowflakeSQLException {
try {
List<ValueVector> first = batchOfVectors.get(0);
for (int i = 1; i < batchOfVectors.size(); i++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public void setChunkFileCount(int chunkFileCount) {
this.chunkFileCount = chunkFileCount;
}

public void setFristChunkStringData(String firstChunkStringData) {
public void setFirstChunkStringData(String firstChunkStringData) {
this.firstChunkStringData = firstChunkStringData;
}

Expand Down
Loading

0 comments on commit 6a7bfef

Please sign in to comment.