Package com.gpudb.protocol
Class ShowProcStatusResponse.OverallStatuses
- java.lang.Object
-
- com.gpudb.protocol.ShowProcStatusResponse.OverallStatuses
-
- Enclosing class:
- ShowProcStatusResponse
public static final class ShowProcStatusResponse.OverallStatuses extends Object
A set of string constants for theShowProcStatusResponseparameteroverallStatuses.Overall statuses for the returned run IDs. Note that these are rollups and individual statuses may differ between data segments for the same run ID; see
statusesandmessagesfor statuses from individual data segments.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOMPLETEThe proc instance completed with no errors.static StringERRORThe proc instance failed with an error.static StringKILLEDThe proc instance was killed before completion.static StringNONEThe proc instance does not have a status, i.e. it has not yet ran.static StringRUNNINGThe proc instance is currently running.
-
-
-
Field Detail
-
RUNNING
public static final String RUNNING
The proc instance is currently running.- See Also:
- Constant Field Values
-
COMPLETE
public static final String COMPLETE
The proc instance completed with no errors.- See Also:
- Constant Field Values
-
KILLED
public static final String KILLED
The proc instance was killed before completion.- See Also:
- Constant Field Values
-
ERROR
public static final String ERROR
The proc instance failed with an error.- See Also:
- Constant Field Values
-
NONE
public static final String NONE
The proc instance does not have a status, i.e. it has not yet ran.- See Also:
- Constant Field Values
-
-