ColumnarColumnMetadata constructor
const
ColumnarColumnMetadata({})
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,
});