IndexSpec¶
- class lsst.daf.butler.ddl.IndexSpec(*columns: str, **kwargs: Any)¶
- Bases: - object- Specification of an index on table columns. - Parameters:
- *columnsstr
- Names of the columns to index. 
- **kwargs: `Any`
- Additional keyword arguments to pass directly to - sqlalchemy.schema.Indexconstructor. This could be used to provide backend-specific options, e.g. to create a- GISTindex in PostgreSQL one can pass- postgresql_using="gist".
 
- *columns