HashColumnSpec¶
- final class lsst.daf.butler.column_spec.HashColumnSpec(*, name: str, doc: str = '', type: Literal['hash'] = 'hash', nullable: bool = True, nbytes: int)¶
- Bases: - _BaseColumnSpec- Description of a hash digest. - Attributes Summary - Configuration for the model, should be a dictionary conforming to [ - ConfigDict][pydantic.config.ConfigDict].- Metadata about the fields defined on the model, mapping of field names to [ - FieldInfo][pydantic.fields.FieldInfo].- Methods Summary - to_arrow()- Return an object that converts values of this column to a column in an Arrow table. - to_sql_spec(**kwargs)- Convert this specification to a SQL-specific one. - Attributes Documentation - model_config: ClassVar[ConfigDict] = {}¶
- Configuration for the model, should be a dictionary conforming to [ - ConfigDict][pydantic.config.ConfigDict].
 - model_fields: ClassVar[dict[str, FieldInfo]] = {'doc': FieldInfo(annotation=str, required=False, default='', description='Documentation for the column.'), 'name': FieldInfo(annotation=str, required=True, description='Name of the column.'), 'nbytes': FieldInfo(annotation=int, required=True), 'nullable': FieldInfo(annotation=bool, required=False, default=True, description='Whether the column may be ``NULL``.'), 'type': FieldInfo(annotation=Literal['hash'], required=False, default='hash')}¶
- Metadata about the fields defined on the model, mapping of field names to [ - FieldInfo][pydantic.fields.FieldInfo].- This replaces - Model.__fields__from Pydantic V1.
 - Methods Documentation