DimensionRecordQueryResults¶
- final class lsst.daf.butler.queries.DimensionRecordQueryResults(driver: QueryDriver, tree: QueryTree, spec: DimensionRecordResultSpec)¶
Bases:
QueryResultsBase
A query for
DimensionRecord
results.- Parameters:
- driver
QueryDriver
Implementation object that knows how to actually execute queries.
- tree
QueryTree
Description of the query as a tree of joins and column expressions. The instance returned directly by the
Butler._query
entry point should be constructed viamake_unit_query_tree
.- spec
DimensionRecordResultSpec
Specification of the query result rows, including output columns, ordering, and slicing.
- driver
Notes
This class should never be constructed directly by users; use
Query.dimension_records
instead.Attributes Summary
All dimensions included in the query's columns.
Methods Summary
any
(*[, execute, exact])Test whether the query would return any rows.
count
(*[, exact, discard])Count the number of rows this query would return.
explain_no_results
([execute])Return human-readable messages that may help explain why the query yields no results.
Return an iterator over individual pages of results as set-backed collections.
Return an iterator over individual pages of results as table-backed collections.
limit
([limit])Return a new query that slices its result rows positionally.
order_by
(*args)Return a new query that yields ordered results.
where
(*args[, bind])Return a query with a boolean-expression filter on its rows.
Attributes Documentation
- dimensions¶
- element¶
Methods Documentation
- any(*, execute: bool = True, exact: bool = True) bool ¶
Test whether the query would return any rows.
- Parameters:
- execute
bool
, optional If
True
, execute at least aLIMIT 1
query if it cannot be determined prior to execution that the query would return no rows.- exact
bool
, optional If
True
, run the full query and perform post-query filtering if needed, until at least one result row is found. IfFalse
, the returned result does not account for post-query filtering, and hence may beTrue
even when all result rows would be filtered out.
- execute
- Returns:
- count(*, exact: bool = True, discard: bool = False) int ¶
Count the number of rows this query would return.
- Parameters:
- exact
bool
, optional If
True
, run the full query and perform post-query filtering if needed to account for that filtering in the count. IfFalse
, the result may be an upper bound.- discard
bool
, optional If
True
, compute the exact count even if it would require running the full query and then throwing away the result rows after counting them. IfFalse
, this is an error, as the user would usually be better off executing the query first to fetch its rows into a new query (or passingexact=False
). Ignored ifexact=False
.
- exact
- Returns:
- count
int
The number of rows the query would return, or an upper bound if
exact=False
.
- count
- explain_no_results(execute: bool = True) Iterable[str] ¶
Return human-readable messages that may help explain why the query yields no results.
- iter_set_pages() Iterator[DimensionRecordSet] ¶
Return an iterator over individual pages of results as set-backed collections.
- Yields:
- table
DimensionRecordSet
A set-backed collection of dimension records.
- table
- iter_table_pages() Iterator[DimensionRecordTable] ¶
Return an iterator over individual pages of results as table-backed collections.
- Yields:
- table
DimensionRecordTable
A table-backed collection of dimension records.
- table
- limit(limit: int | None = None) Self ¶
Return a new query that slices its result rows positionally.
- Parameters:
- Returns:
- result
QueryResultsBase
A sliced version of this query results object.
- result
Notes
If this method is called multiple times, the new slice parameters replace the old ones. Slicing always occurs after sorting, even if
limit
is called beforeorder_by
.
- order_by(*args: str | IntColumnLiteral | StringColumnLiteral | FloatColumnLiteral | HashColumnLiteral | UUIDColumnLiteral | DateTimeColumnLiteral | TimespanColumnLiteral | RegionColumnLiteral | DimensionKeyReference | DimensionFieldReference | DatasetFieldReference | UnaryExpression | BinaryExpression | Reversed | ExpressionProxy) Self ¶
Return a new query that yields ordered results.
- Parameters:
- *args
str
Names of the columns/dimensions to use for ordering. Column name can be prefixed with minus (
-
) to use descending ordering.
- *args
- Returns:
- result
QueryResultsBase
An ordered version of this query results object.
- result
Notes
If this method is called multiple times, the new sort terms replace the old ones.
- where(*args: str | Predicate | DataCoordinate | Mapping[str, Any], bind: Mapping[str, Any] | None = None, **kwargs: int | str) Self ¶
Return a query with a boolean-expression filter on its rows.
- Parameters:
- *args
Constraints to apply, combined with logical AND. Arguments may be
str
expressions to parse,Predicate
objects (these are typically constructed viaexpression_factory
) or data IDs.- bind
Mapping
Mapping from string identifier appearing in a string expression to a literal value that should be substituted for it. This is recommended instead of embedding literals directly into the expression, especially for strings, timespans, or other types where quoting or formatting is nontrivial.
- **kwargs
Data ID key value pairs that extend and override any present in
*args
.
- Returns:
- query
QueryBase
A new query object with the given row filters (as well as any already present in
self
). All row filters are combined with logical AND.
- query
Notes
If an expression references a dimension or dimension element that is not already present in the query, it will be joined in, but dataset searches must already be joined into a query in order to reference their fields in expressions.
Data ID values are not checked for consistency; they are extracted from
args
and thenkwargs
and combined, with later values overriding earlier ones.