我尝试使用以下方法从数据框中选择多个列以插入到表中,
var result = cassandraDf.select(columnNames.map(c => col(c)): _*)
和
var result = cassandraDf.select(columnNames.head, columnNames.tail: _*)
这两个方法都抛出java.lang.ArrayIndexOutOfBoundsException:25,我在数据帧中有26列
在数据框中选择列是否有任何限制?
谢谢, 灰