You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
——row45至46,调整英文内容为:
[ USING <replaceable class="parameter">method</replaceable> ]
[ WITH ( <replaceable class="parameter">storage_parameter</replaceable> [= <replaceable class="parameter">value</replaceable>] [, ... ] ) | WITHOUT OIDS ]
——row56至57,调整中文内容为:
[ USING <replaceable class="parameter">method</replaceable> ]
[ WITH ( <replaceable class="parameter">storage_parameter</replaceable> [= <replaceable class="parameter">value</replaceable>] [, ... ] ) | WITHOUT OIDS ]
——row230至251,增加英文和中文内容为:
<varlistentry>
<!--==========================orignal english content==========================
<term><literal>USING <replaceable class="parameter">method</replaceable></literal></term>
____________________________________________________________________________-->
<term><literal>USING <replaceable class="parameter">method</replaceable></literal></term>
<listitem>
<!--==========================orignal english content==========================
<para>
This optional clause specifies the table access method to use to store
the contents for the new table; the method needs be an access method of
type <literal>TABLE</literal>. See <xref linkend="tableam"/> for more
information. If this option is not specified, the default table access
method is chosen for the new table. See <xref
linkend="guc-default-table-access-method"/> for more information.
</para>
____________________________________________________________________________-->
<para>
这个可选的子句指定了用于存储新表内容的表访问方法;该方法需要是一个类型 <literal>TABLE</literal>的访问方法。详见<xref linkend="tableam"/>。
如果没有指定这个选项,则选择新表的默认表访问方法。详见<xref linkend="guc-default-table-access-method"/>。
</para>
</listitem>
</varlistentry>
——row264至267,调整英文内容为:
information. For backward-compatibility the <literal>WITH</literal>
clause for a table can also include <literal>OIDS=FALSE</literal> to
specify that rows of the new table should contain no OIDs (object
identifiers), <literal>OIDS=TRUE</literal> is not supported anymore.
——row274,调整中文内容为:
为了向后兼容,表的<literal>WITH</literal>子句也能包含<literal>OIDS=FALSE</literal>来指定新表的行将不包含OID(对象标识符)。<literal>OIDS=TRUE</literal>不再支持。
——row279,删除英文和中文内容为:
<!--==========================orignal english content==========================
<term><literal>WITH OIDS</literal></term>
____________________________________________________________________________-->
<term><literal>WITH OIDS</literal></term>
——row287至289,调整英文内容为:
This is backward-compatible syntax for declaring a table
<literal>WITHOUT OIDS</literal>, creating a table <literal>WITH
OIDS</literal> is not supported anymore.
——row293,调整中文内容为:
这是向后兼容的语法,用于声明表<literal>WITHOUT OIDS</literal>,创建表<literal>WITH OIDS</literal>不再被支持。
——row474,删除英文和中文内容为:
<!--==========================orignal english content==========================
<para>
The <command>CREATE TABLE AS</command> command allows the user to
explicitly specify whether OIDs should be included. If the
presence of OIDs is not explicitly specified,
the <xref linkend="guc-default-with-oids"/> configuration variable is
used.
</para>
____________________________________________________________________________-->
<para>
<command>CREATE TABLE AS</command>命令允许用户显式地指定
是否应该包括 OID。如果没有显式地指定 OID 的存在,将使用
<xref linkend="guc-default-with-oids"/>配置变量来判断。
</para>
——row529,调整英文内容为:
prepared statement. The new table will be dropped at commit:
——row540,调整中文内容为:
它仅由表<literal>films</literal>中最近的项组成,使用准备好的声明。新表将在提交时被丢弃:
——row534,调整英文内容为:
CREATE TEMP TABLE films_recent ON COMMIT DROP AS
——row545,调整中文内容为:
CREATE TEMP TABLE films_recent ON COMMIT DROP AS
——row588,调整英文内容为:
extension; storage parameters are not in the standard.
——row630,调整中文内容为:
标准中没有存储参数。
0 commit comments