We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee88a7 commit e7e5073Copy full SHA for e7e5073
wren-main/src/main/java/io/wren/main/connector/snowflake/SnowflakeClient.java
@@ -21,6 +21,7 @@
21
import io.wren.base.WrenException;
22
import io.wren.base.config.SnowflakeConfig;
23
import io.wren.connector.postgres.PostgresClient;
24
+import net.snowflake.client.jdbc.SnowflakeDriver;
25
26
import java.sql.Connection;
27
import java.sql.DriverManager;
@@ -50,6 +51,8 @@ public Connection createConnection()
50
51
{
52
try {
53
Class.forName("net.snowflake.client.jdbc.SnowflakeDriver");
54
+ // TODO: Remove this line, it just use dependency to avoid dependency analyze failure
55
+ SnowflakeDriver driver = new SnowflakeDriver();
56
}
57
catch (ClassNotFoundException e) {
58
throw new RuntimeException(e);
0 commit comments