TimespanDatabaseRepresentation¶
- class lsst.daf.butler.TimespanDatabaseRepresentation¶
- Bases: - ABC- An interface for representing a timespan in a database. - Notes - Much of this class’s interface is comprised of classmethods. Instances can be constructed via the - from_columnsor- fromLiteralmethods as a way to include timespan overlap operations in query JOIN or WHERE clauses.- TimespanDatabaseRepresentationimplementations are guaranteed to use the same interval definitions and edge-case behavior as the- Timespanclass. They are also guaranteed to round-trip- Timespaninstances exactly.- Attributes Summary - Return base logical name for the timespan column or expression ( - str).- Methods Summary - contains(other)- Return a SQLAlchemy expression representing containment. - extract(mapping[, name])- Extract a timespan from a dictionary that represents a database row. - flatten([name])- Return the actual column(s) that comprise this logical column. - fromLiteral(timespan)- Construct a database timespan from a literal - Timespaninstance.- from_columns(columns[, name])- Construct a database timespan from the columns of a table or subquery. - getFieldNames([name])- Return the actual field names used by this representation. - Return - Trueif this representation supports exclusion constraints.- isEmpty()- Return a boolean SQLAlchemy expression for testing empty timespans. - isNull()- Return expression that tests whether the timespan is - NULL.- lower()- Return a SQLAlchemy expression representing a lower bound of a timespan. - makeFieldSpecs(nullable[, name])- Make objects that reflect the fields that must be added to table. - overlaps(other)- Return a SQLAlchemy expression representing timespan overlaps. - update(timespan[, name, result])- Add a timespan value to a dictionary that represents a database row. - upper()- Return a SQLAlchemy expression representing an upper bound of a timespan. - Attributes Documentation - name¶
- Return base logical name for the timespan column or expression ( - str).- If the representation uses only one actual column, this should be the full name of the column. In other cases it is an unspecified common subset of the column names. 
 - Methods Documentation - abstract contains(other: _S | ColumnElement) ColumnElement¶
- Return a SQLAlchemy expression representing containment. - Returns a test for whether an in-database timespan contains another timespan or a time point. - Parameters:
- othertype(self)orsqlalchemy.sql.ColumnElement
- The timespan or time to relate to - self; either an instance of the same- TimespanDatabaseRepresentationsubclass as- self, or a SQL column expression representing an- astropy.time.Time.
 
- other
- Returns:
- containssqlalchemy.sql.ColumnElement
- A boolean SQLAlchemy expression object. 
 
- contains
 - Notes - See - Timespan.containsfor edge-case behavior.
 - abstract classmethod extract(mapping: Mapping[Any, Any], name: str | None = None) Timespan | None¶
- Extract a timespan from a dictionary that represents a database row. - Parameters:
- mappingMapping[Any,Any]
- A dictionary representing a database row containing a - Timespanin this representation. Should have key(s) equal to the return value of- getFieldNames.
- namestr, optional
- Name for the logical column; a part of the name for multi-column representations. Defaults to - cls.NAME.
 
- mapping
- Returns:
 
 - abstract flatten(name: str | None = None) tuple[sqlalchemy.sql.elements.ColumnElement, ...]¶
- Return the actual column(s) that comprise this logical column. 
 - abstract classmethod fromLiteral(timespan: Timespan | None) _S¶
- Construct a database timespan from a literal - Timespaninstance.- Parameters:
- Returns:
- tsReprTimespanDatabaseRepresentation
- A timespan expression object backed by - sqlalchemy.sql.literalcolumn expressions.
 
- tsRepr
 
 - abstract classmethod from_columns(columns: ColumnCollection, name: str | None = None) _S¶
- Construct a database timespan from the columns of a table or subquery. - Parameters:
- columnssqlalchemy.sql.ColumnCollections
- SQLAlchemy container for raw columns. 
- namestr, optional
- Name for the logical column; a part of the name for multi-column representations. Defaults to - cls.NAME.
 
- columns
- Returns:
- tsReprTimespanDatabaseRepresentation
- A timespan expression object backed by - sqlalchemy.sql.literalcolumn expressions.
 
- tsRepr
 
 - abstract classmethod getFieldNames(name: str | None = None) tuple[str, ...]¶
- Return the actual field names used by this representation. - Parameters:
- namestr, optional
- Name for the logical column; a part of the name for multi-column representations. Defaults to - cls.NAME.
 
- name
- Returns:
- namestuple[str]
- Field name(s). Guaranteed to be the same as the names of the field specifications returned by - makeFieldSpecs.
 
- names
 
 - classmethod hasExclusionConstraint() bool¶
- Return - Trueif this representation supports exclusion constraints.
 - abstract isEmpty() ColumnElement¶
- Return a boolean SQLAlchemy expression for testing empty timespans. - Returns:
- emptysqlalchemy.sql.ColumnElement
- A boolean SQLAlchemy expression object. 
 
- empty
 
 - abstract isNull() ColumnElement¶
- Return expression that tests whether the timespan is - NULL.- Returns a SQLAlchemy expression that tests whether this region is logically - NULL.- Returns:
- isnullsqlalchemy.sql.ColumnElement
- A boolean SQLAlchemy expression object. 
 
- isnull
 
 - abstract lower() ColumnElement¶
- Return a SQLAlchemy expression representing a lower bound of a timespan. - Returns:
- lowersqlalchemy.sql.ColumnElement
- A SQLAlchemy expression for a lower bound. 
 
- lower
 - Notes - If database holds - NULLfor a timespan then the returned expression should evaluate to 0. Main purpose of this and- uppermethod is to use them in generating SQL, in particular ORDER BY clause, to guarantee a predictable ordering. It may potentially be used for transforming boolean user expressions into SQL, but it will likely require extra attention to ordering issues.
 - abstract classmethod makeFieldSpecs(nullable: bool, name: str | None = None, **kwargs: Any) tuple[lsst.daf.butler.ddl.FieldSpec, ...]¶
- Make objects that reflect the fields that must be added to table. - Makes one or more - ddl.FieldSpecobjects that reflect the fields that must be added to a table for this representation.- Parameters:
- nullablebool
- If - True, the timespan is permitted to be logically- NULL(mapped to- Nonein Python), though the corresponding value(s) in the database are implementation-defined. Nullable timespan fields default to NULL, while others default to (-∞, ∞).
- namestr, optional
- Name for the logical column; a part of the name for multi-column representations. Defaults to - cls.NAME.
- **kwargs
- Keyword arguments are forwarded to the - ddl.FieldSpecconstructor for all fields; implementations only provide the- name,- dtype, and- defaultarguments themselves.
 
- nullable
- Returns:
- specstuple[ddl.FieldSpec]
- Field specification objects; length of the tuple is subclass-dependent, but is guaranteed to match the length of the return values of - getFieldNamesand- update.
 
- specs
 
 - abstract overlaps(other: _S | ColumnElement) ColumnElement¶
- Return a SQLAlchemy expression representing timespan overlaps. - Parameters:
- othertype(self)
- The timespan or time to overlap - selfwith. If a single time, this is a synonym for- contains.
 
- other
- Returns:
- overlapsqlalchemy.sql.ColumnElement
- A boolean SQLAlchemy expression object. 
 
- overlap
 - Notes - See - Timespan.overlapsfor edge-case behavior.
 - abstract classmethod update(timespan: Timespan | None, name: str | None = None, result: dict[str, Any] | None = None) dict[str, Any]¶
- Add a timespan value to a dictionary that represents a database row. - Parameters:
- timespan
- A timespan literal, or - Nonefor- NULL.
- namestr, optional
- Name for the logical column; a part of the name for multi-column representations. Defaults to - cls.NAME.
- resultdict[str,Any], optional
- A dictionary representing a database row that fields should be added to, or - Noneto create and return a new one.
 
- Returns:
 
 - abstract upper() ColumnElement¶
- Return a SQLAlchemy expression representing an upper bound of a timespan. - Returns:
- uppersqlalchemy.sql.ColumnElement
- A SQLAlchemy expression for an upper bound. 
 
- upper
 - Notes - If database holds - NULLfor a timespan then the returned expression should evaluate to 0. Also see notes for- lowermethod.