SHOW CREATE SPACE¶
The SHOW CREATE SPACE
statement shows the creating statement of the specified graph space.
For details about the graph space information, see CREATE SPACE.
Syntax¶
SHOW CREATE SPACE <space_name>;
Example¶
nebula> SHOW CREATE SPACE basketballplayer;
+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Space | Create Space |
+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| "basketballplayer" | "CREATE SPACE `basketballplayer` (partition_num = 10, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(32), atomic_edge = false)" |
+--------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Last update:
February 19, 2024