Defines the possible statuses for a global table.
Data structure
G_INIT: Initializing. A global table enters this state upon creation.
G_RE_CONF: Reconfiguring. A global table enters this state when all or some of its replicas are being configured. This process can include creating tables, synchronizing historical data, or attaching and detaching replicas.
G_ACTIVE: Active.
enum GlobalTableStatus {
G_INIT = 1;
G_RE_CONF = 2;
G_ACTIVE = 3;
}