yaozhu opened a new issue, #2830: URL: https://github.com/apache/drill/issues/2830
Before submitting a bug report, please verify that you are using the most current version of Drill. Drill jdbc execute more than one sqls in same connection ,drill report exception msg in drill.log with info level reproduce stop follow this: //mysql datasource //create table t1 (a int, b varchar(100), c varchar(100)) //insert into t1 values( 1, 'aaa','bbbb'); String sql = "select * from t1 limit 1"; try { Statement stmt = conn.createStatement(); for (int i = 0 ; i < 4 ; ++i) { stmt.executeQuery(sql); } System.out.println("DONE!"); } catch (SQLException e) { e.printStackTrace(); }finally { conn.close(); }  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@drill.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org