ColumnarColumnMetadata constructor

const ColumnarColumnMetadata({
  1. required String name,
  2. required int odbcType,
  3. required bool compressed,
  4. required int compressionType,
  5. required Uint8List data,
})

Creates a new ColumnarColumnMetadata instance.

The name is the column name. The odbcType is the ODBC SQL type code. The compressed indicates if the column data is compressed. The compressionType is the compression algorithm used (if compressed). Column data as a byte buffer (compressed or uncompressed).

Implementation

const ColumnarColumnMetadata({
  required this.name,
  required this.odbcType,
  required this.compressed,
  required this.compressionType,
  required this.data,
});