Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
173 changes: 107 additions & 66 deletions pom.xml

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/main/java/io/trino/hadoop/HadoopNative.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public static synchronized void requireHadoopNative()
}
try {
loadLibrary("hadoop");
loadLibrary("snappy");
loadLibrary("zstd");
setStatic(NativeCodeLoader.class.getDeclaredField("nativeCodeLoaded"), true);

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/trino/hadoop/SocksSocketFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void connect(SocketAddress endpoint, int timeout)
throws IOException
{
try {
SocketAddress address = new InetSocketAddress(InetAddress.getByName(proxy.getHostText()), proxy.getPort());
SocketAddress address = new InetSocketAddress(InetAddress.getByName(proxy.getHost()), proxy.getPort());
socket.connect(address, timeout);
}
catch (IOException e) {
Expand Down
Loading