Defines the stages of data synchronization for a physical table in a global table.
Data structure
SYNC_INIT: Initialization.
SYNC_FULL: Full synchronization.
SYNC_INCR: Incremental synchronization.
enum SyncStage {
SYNC_INIT = 1;
SYNC_FULL = 2;
SYNC_INCR = 3;
}