You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2020/09/09 06:48:47 UTC

[GitHub] [shardingsphere] czarea commented on issue #6065: java.lang.ClassCastException: org.apache.shardingsphere.sql.parser.sql.segment.dml.column.ColumnSegment cannot be cast to org.apache.shardingsphere.sql.parser.sql.segment.dml.expr.ExpressionSegment

czarea commented on issue #6065:
URL: https://github.com/apache/shardingsphere/issues/6065#issuecomment-689345200


   ```
   List<AtUser> users = jdbcTemplate.query("select nick_name,type,id from user.t_user where id_old in ( " + video.getAtList() + " ) ",
             (rs, rowNum) -> {
                     AtUser user = new AtUser();
                     user.setNickName(rs.getString(1));
                     user.setUserType(rs.getShort(2));
                     user.setUserId(rs.getLong(3));
                     return user;
             });
   ```
   
   The same problem !
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org