@@ -549,17 +549,17 @@ def query_by_column(self, catalog, params, *,
549549 A dictionary of column constraint parameters to include in the query.
550550 Each key-value pair will be translated into an ADQL condition.
551551 - For a range query, use a tuple of two values (min, max).
552- e.g. ``{'flux': (1e-12, 1e-10)}`` translates to
553- ``flux BETWEEN 1e-12 AND 1e-10``.
552+ e.g. ``{'flux': (1e-12, 1e-10)}`` translates to
553+ ``flux BETWEEN 1e-12 AND 1e-10``.
554554 - For list values, use a list of values.
555- e.g. ``{'object_type': ['QSO', 'GALAXY']}`` translates to
556- ``object_type IN ('QSO', 'GALAXY')``.
555+ e.g. ``{'object_type': ['QSO', 'GALAXY']}`` translates to
556+ ``object_type IN ('QSO', 'GALAXY')``.
557557 - For comparison queries, use a tuple of (operator, value),
558- where operator is one of '=', '!=', '<', '>', '<=', '>='.
559- e.g. ``{'magnitude': ('<', 15)}`` translates to ``magnitude < 15``.
558+ where operator is one of '=', '!=', '<', '>', '<=', '>='.
559+ e.g. ``{'magnitude': ('<', 15)}`` translates to ``magnitude < 15``.
560560 - For exact matches, use a single value (str, int, float).
561- e.g. ``{'object_type': 'QSO'}`` translates to
562- ``object_type = 'QSO'``.
561+ e.g. ``{'object_type': 'QSO'}`` translates to
562+ ``object_type = 'QSO'``.
563563 The keys should correspond to valid column names in the catalog.
564564 Use `list_columns` to see the available columns.
565565 get_query_payload : bool, optional
0 commit comments