Enabling and Disabling Local Segmentation
To enable local segmentation, use the ENABLE_LOCAL_SEGMENTS function. To disable local segmentation, use the DISABLE_LOCAL_SEGMENTATION function:
=> SELECT ENABLE_LOCAL_SEGMENTS(); ENABLE_LOCAL_SEGMENTS ----------------------- ENABLED (1 row) => SELECT is_local_segment_enabled FROM elastic_cluster; is_enabled ------------ t (1 row) => SELECT DISABLE_LOCAL_SEGMENTS(); DISABLE_LOCAL_SEGMENTS ------------------------ DISABLED (1 row) => SELECT is_local_segment_enabled FROM ELASTIC_CLUSTER; is_enabled ------------ f (1 row)