SHOW CREATE CLUSTER

SHOW CREATE CLUSTER returns the DDL statement used to create the cluster.

Syntax

SHOW CREATE CLUSTER cluster_name
Field Use
cluster_name The cluster you want to get the CREATE statement for. For available clusters, see SHOW CLUSTERS.

Examples

SHOW CREATE CLUSTER c;
    name          |    create_sql
------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 c                | CREATE CLUSTER "c" (DISK = false, INTROSPECTION DEBUGGING = false, INTROSPECTION INTERVAL = INTERVAL '00:00:01', MANAGED = true, REPLICATION FACTOR = 1, SIZE = '100cc', SCHEDULE = MANUAL)

Privileges

There are no privileges required to execute this statement.

Back to top ↑