Package com.gpudb.protocol
Class AdminRepairTableRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.AdminRepairTableRequest.Options
-
- Enclosing class:
- AdminRepairTableRequest
public static final class AdminRepairTableRequest.Options extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringALTER_TABLEReset columns modification after incomplete alter column.static StringDELETE_CHUNKSDeletes any corrupted chunksstatic StringFALSEstatic StringREPAIR_POLICYCorrective action to take.static StringREPLAY_WALManually invokes write-ahead log (WAL) replay on the tablestatic StringSHRINK_COLUMNSShrinks corrupted chunks to the shortest columnstatic StringTRUEstatic StringVERIFY_ALLIfFALSEonly table chunk data already known to be corrupted will be repaired.
-
-
-
Field Detail
-
REPAIR_POLICY
public static final String REPAIR_POLICY
Corrective action to take. Supported values:DELETE_CHUNKS: Deletes any corrupted chunksSHRINK_COLUMNS: Shrinks corrupted chunks to the shortest columnREPLAY_WAL: Manually invokes write-ahead log (WAL) replay on the tableALTER_TABLE: Reset columns modification after incomplete alter column.
- See Also:
- Constant Field Values
-
DELETE_CHUNKS
public static final String DELETE_CHUNKS
Deletes any corrupted chunks- See Also:
- Constant Field Values
-
SHRINK_COLUMNS
public static final String SHRINK_COLUMNS
Shrinks corrupted chunks to the shortest column- See Also:
- Constant Field Values
-
REPLAY_WAL
public static final String REPLAY_WAL
Manually invokes write-ahead log (WAL) replay on the table- See Also:
- Constant Field Values
-
ALTER_TABLE
public static final String ALTER_TABLE
Reset columns modification after incomplete alter column.- See Also:
- Constant Field Values
-
VERIFY_ALL
public static final String VERIFY_ALL
IfFALSEonly table chunk data already known to be corrupted will be repaired. Otherwise the database will perform a full table scan to check for correctness. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
TRUE
public static final String TRUE
- See Also:
- Constant Field Values
-
FALSE
public static final String FALSE
- See Also:
- Constant Field Values
-
-