Update CassandraReaderHelper.java

支持Counter类型
This commit is contained in:
YanxinXue 2022-12-28 16:52:41 +08:00
parent a8ec3af387
commit a572f38ddf

View File

@ -298,6 +298,7 @@ public class CassandraReaderHelper {
record.addColumn(new LongColumn(rs.getInt(i))); record.addColumn(new LongColumn(rs.getInt(i)));
break; break;
case COUNTER:
case BIGINT: case BIGINT:
record.addColumn(new LongColumn(rs.getLong(i))); record.addColumn(new LongColumn(rs.getLong(i)));
break; break;