I am using snowflake jdbc, and trying to create a table in snowflake by passing an invalid warehouse name and its still creating the table in default warehouse.
String jdbcUrl = "jdbc:snowflake://<identifier>.snowflakecomputing.com?warehouse=invalid_warehouse&db=db&schema=schema&role=role";
Connection conn = null;
Statement st = null;
try {
conn = DriverManager.getConnection(jdbcUrl, "username", "password");
st = conn.createStatement();
ResultSet result = st.executeQuery("create table test_table_err (name varchar(32))");
