Skip to content

Commit

Permalink
SNOW-983635 Print UnsatisfiedLinkError
Browse files Browse the repository at this point in the history
Description

Testing
  • Loading branch information
sfc-gh-lthiede committed Dec 22, 2023
1 parent 3aa76a8 commit e579923
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,12 @@ public void writeRow(List<Object> row) {
@Override
public void close() throws IOException {
try {
int test = Math.max(Math.max((int) ZstdOutputStreamNoFinalizer.recommendedCOutSize(), (int) ZstdInputStreamNoFinalizer.recommendedDInSize()), (int)ZstdInputStreamNoFinalizer.recommendedDOutSize());
int test = Math.max(Math.max((int) ZstdOutputStreamNoFinalizer.recommendedCOutSize(), (int) ZstdInputStreamNoFinalizer.recommendedDInSize()), (int) ZstdInputStreamNoFinalizer.recommendedDOutSize());
System.out.println(test);
writer.close();
} catch (java.lang.UnsatisfiedLinkError e) {
System.out.println(e);
throw new IOException(e);
} catch (InterruptedException e) {
throw new IOException(e);
} finally {
Expand Down

0 comments on commit e579923

Please sign in to comment.