We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 661a303 commit 70a0659Copy full SHA for 70a0659
astroquery/eso/core.py
@@ -282,7 +282,8 @@ def query_tap_service(self,
282
warnings.warn("Query returned no results", NoResultsWarning)
283
284
if len(table_to_return) == maxrec:
285
- warnings.warn(f"Results truncated to {maxrec}", MaxResultsWarning)
+ warnings.warn(f"Results truncated to {maxrec}. "
286
+ "To retrieve all the records set to None the ROW_LIMIT attribute", MaxResultsWarning)
287
288
return table_to_return
289
0 commit comments