Java源码示例:org.apache.spark.sql.vectorized.ColumnarMap

示例1
@Override
public ColumnarMap getMap(int rowId) {
  /**
   *  BigQuery does not support Map type but this function needs to be overridden since this
   *  class extends an abstract class
   */
  throw new UnsupportedOperationException();
}
 
示例2
@Override
public ColumnarMap getMap(int rowId) {
  throw new UnsupportedOperationException();
}
 
示例3
@Override
public ColumnarMap getMap(int rowId) {
  throw new UnsupportedOperationException("Unsupported type - map");
}
 
示例4
@Override
public ColumnarMap getMap(int ordinal) {
  throw new UnsupportedOperationException();
}