QueryStatus#
- final class polars_cloud.QueryStatus
Attributes:
QUEUED
Query is queued.
SCHEDULED
Query is scheduled on the compute plane.
INPROGRESS
Query is in progress.
SUCCESS
Query successfully completed.
FAILED
Query failed.
CANCELED
Query was cancelled by user.
Methods:
is_done
Whether the query is done.
- QUEUED = 0
Query is queued.
- SCHEDULED = 1
Query is scheduled on the compute plane.
- INPROGRESS = 2
Query is in progress.
- SUCCESS = 3
Query successfully completed.
- FAILED = 4
Query failed.
- CANCELED = 5
Query was cancelled by user.
- is_done() bool
Whether the query is done. Can be successfully or unsuccessfully.