修改完善\h create tablespace信息

This commit is contained in:
yuchao
2023-11-03 15:31:59 +08:00
parent a5cf4da03a
commit 4cfb558e4b

View File

@ -11,15 +11,20 @@
<refsynopsisdiv>
<synopsis>
CREATE TABLESPACE tablespace_name
[ OWNER user_name ] [ RELATIVE ] LOCATION 'directory' [ MAXSIZE 'space_size' ]
[with_option_clause];
{[ OWNER user_name ] [ RELATIVE ] LOCATION 'directory' [ MAXSIZE 'space_size' ]
[with_option_clause]} |
{[LOGGING | NOLOGGING] DATAFILE 'directory' [SIZE space_size space_size_unit] [REUSE]
[AUTOEXTEND ON [NEXT next_size next_size_unit] [MAXSIZE 'autoextend_size'] | AUTOEXTEND OFF]} |
{DATAFILE 'directory' [SIZE space_size space_size_unit] [REUSE]
[AUTOEXTEND ON [NEXT next_size next_size_unit] [MAXSIZE 'autoextend_size'] | AUTOEXTEND OFF] {LOGGING | NOLOGGING}};
where option_clause can be:
WITH ( filesystem= { 'systemtype '| " systemtype " | systemtype }
[ { , address = { ' ip:port [ , ... ] ' | " ip:port [ , ... ] "} } ]
, cfgpath = { 'path '| " path " } ,storepath = { 'rootpath '| " rootpath "}
[{, random_page_cost = { 'value '| " value " | value }}]
[{,seq_page_cost = { 'value '| " value " | value }}])
WITH ({filesystem = {'general' | "general" | general} |
address = {'ip:port[,...]'} |
cfgpath = {'path'} |
storepath = {'rootpath'} |
random_page_cost = {'value' | value} |
seq_page_cost = {'value' | value}}[,...])
</synopsis>
</refsynopsisdiv>
</refentry>