@Override
 public String nativeSQL(String sql) throws SQLException {
   checkNotClosed();
   try {
     return physicalConnection.nativeSQL(sql);
   } catch (SQLException sqlException) {
     pooledCassandraConnection.connectionErrorOccurred(sqlException);
     throw sqlException;
   }
 }