StorageDescriptor constructor

StorageDescriptor({
  1. List<String>? bucketColumns,
  2. List<Column>? columns,
  3. bool? compressed,
  4. String? inputFormat,
  5. String? location,
  6. int? numberOfBuckets,
  7. String? outputFormat,
  8. Map<String, String>? parameters,
  9. SchemaReference? schemaReference,
  10. SerDeInfo? serdeInfo,
  11. SkewedInfo? skewedInfo,
  12. List<Order>? sortColumns,
  13. bool? storedAsSubDirectories,
})

Implementation

StorageDescriptor({
  this.bucketColumns,
  this.columns,
  this.compressed,
  this.inputFormat,
  this.location,
  this.numberOfBuckets,
  this.outputFormat,
  this.parameters,
  this.schemaReference,
  this.serdeInfo,
  this.skewedInfo,
  this.sortColumns,
  this.storedAsSubDirectories,
});