org.apache.spark.sql.vectorized.ColumnarMap Java Examples

The following examples show how to use org.apache.spark.sql.vectorized.ColumnarMap. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ArrowSchemaConverter.java    From spark-bigquery-connector with Apache License 2.0 5 votes vote down vote up
@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();
}
 
Example #2
Source File: FlightArrowColumnVector.java    From flight-spark-source with Apache License 2.0 4 votes vote down vote up
@Override
public ColumnarMap getMap(int rowId) {
  throw new UnsupportedOperationException();
}
 
Example #3
Source File: IcebergArrowColumnVector.java    From iceberg with Apache License 2.0 4 votes vote down vote up
@Override
public ColumnarMap getMap(int rowId) {
  throw new UnsupportedOperationException("Unsupported type - map");
}
 
Example #4
Source File: NullValuesColumnVector.java    From iceberg with Apache License 2.0 4 votes vote down vote up
@Override
public ColumnarMap getMap(int ordinal) {
  throw new UnsupportedOperationException();
}