Skip to content

Commit dfdb09e

Browse files
author
Steve888888
committed
Merge branch 'master' of https://github.com/Steve888888/pgdoc-cn
2 parents 2fd15cb + d307596 commit dfdb09e

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

postgresql/doc/src/sgml/install-windows.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ ____________________________________________________________________________-->
308308
<varlistentry>
309309
<term><productname>ActiveState Perl</productname></term>
310310
<listitem><para>
311-
ActiveState Perl被用来运行构建生成脚本。MinGW或Cygwin Perl是不符合要求的。AcitveState Perl也必须存在于PATH中。其二进制文件可以从<ulink url="http://www.activestate.com"></ulink>下载(注意:需要版本5.8.3及以上,免费标准发布就足够了)。
311+
ActiveState Perl被用来运行构建生成脚本。MinGW或Cygwin Perl是不符合要求的。AcitveState Perl也必须存在于PATH中。其二进制文件可以从<ulink url="https://www.activestate.com"></ulink>下载(注意:需要版本5.8.3及以上,免费标准发布就足够了)。
312312
</para></listitem>
313313
</varlistentry>
314314

postgresql/doc/src/sgml/ltree.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -889,34 +889,34 @@ ____________________________________________________________________________-->
889889
<row>
890890
<entry><function>lca(ltree, ltree, ...)</function><indexterm><primary>lca</primary></indexterm></entry>
891891
<entry><type>ltree</type></entry>
892-
<entry>lowest common ancestor, i.e., longest common prefix of paths
892+
<entry>longest common ancestor of paths
893893
(up to 8 arguments supported)</entry>
894-
<entry><literal>lca('1.2.2.3','1.2.3.4.5.6')</literal></entry>
894+
<entry><literal>lca('1.2.3','1.2.3.4.5.6')</literal></entry
895895
<entry><literal>1.2</literal></entry>
896896
</row>
897897
____________________________________________________________________________-->
898898
<row>
899899
<entry><function>lca(ltree, ltree, ...)</function><indexterm><primary>lca</primary></indexterm></entry>
900900
<entry><type>ltree</type></entry>
901-
<entry>最低公共祖先,即最长的公共路径前缀(最多支持 8 个参数)</entry>
902-
<entry><literal>lca('1.2.2.3','1.2.3.4.5.6')</literal></entry>
901+
<entry>路径的最长公共祖先(最多支持 8 个参数)</entry>
902+
<entry><literal>lca('1.2.3','1.2.3.4.5.6')</literal></entry
903903
<entry><literal>1.2</literal></entry>
904904
</row>
905905

906906
<!--==========================orignal english content==========================
907907
<row>
908908
<entry><function>lca(ltree[])</function></entry>
909909
<entry><type>ltree</type></entry>
910-
<entry>lowest common ancestor, i.e., longest common prefix of paths</entry>
911-
<entry><literal>lca(array['1.2.2.3'::ltree,'1.2.3'])</literal></entry>
910+
<entry>longest common ancestor of paths in array</entry>
911+
<entry><literal>lca(array['1.2.3'::ltree,'1.2.3.4'])</literal></entry>
912912
<entry><literal>1.2</literal></entry>
913913
</row>
914914
____________________________________________________________________________-->
915915
<row>
916916
<entry><function>lca(ltree[])</function></entry>
917917
<entry><type>ltree</type></entry>
918-
<entry>最低公共祖先,即最长的公共路径前缀</entry>
919-
<entry><literal>lca(array['1.2.2.3'::ltree,'1.2.3'])</literal></entry>
918+
<entry>数组中路径的最长公共祖先</entry>
919+
<entry><literal>lca(array['1.2.3'::ltree,'1.2.3.4'])</literal></entry>
920920
<entry><literal>1.2</literal></entry>
921921
</row>
922922

postgresql/doc/src/sgml/pgrowlocks.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ ____________________________________________________________________________-->
146146
</row>
147147
<!--==========================orignal english content==========================
148148
<row>
149-
<entry><structfield>lock_type</structfield></entry>
149+
<entry><structfield>modes</structfield></entry>
150150
<entry><type>text[]</type></entry>
151151
<entry>Lock mode of lockers (more than one if multitransaction),
152152
an array of <literal>Key Share</>, <literal>Share</>,
@@ -155,7 +155,7 @@ ____________________________________________________________________________-->
155155
</row>
156156
____________________________________________________________________________-->
157157
<row>
158-
<entry><structfield>lock_type</structfield></entry>
158+
<entry><structfield>modes</structfield></entry>
159159
<entry><type>text[]</type></entry>
160160
<entry>持锁者的锁模式(如果是多事务则多于一个),是一个<literal>Key Share</literal>、<literal>Share</literal>、<literal>For No Key Update</literal>、<literal>No Key Update</literal>、<literal>For Update</literal>、<literal>Update</literal>组成的数组。</entry>
161161
</row>

postgresql/doc/src/sgml/ref/do.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,12 @@ ____________________________________________________________________________-->
154154
<!--==========================orignal english content==========================
155155
<para>
156156
The procedural language to be used must already have been installed
157-
into the current database by means of <command>CREATE LANGUAGE</>.
157+
into the current database by means of <command>CREATE EXTENSION</>.
158158
<literal>plpgsql</> is installed by default, but other languages are not.
159159
</para>
160160
____________________________________________________________________________-->
161161
<para>
162-
要使用的过程语言必须已经用<command>CREATE LANGUAGE</command>安装在
162+
要使用的过程语言必须已经用<command>CREATE EXTENSION</command>安装在
163163
当前数据库中。默认已经安装了<literal>plpgsql</literal>,但是其他语言没有被
164164
安装。
165165
</para>

postgresql/doc/src/sgml/ref/drop_function.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ ____________________________________________________________________________-->
231231
</variablelist>
232232
</refsect1>
233233

234-
<refsect1 id="SQL-DROPFUNCTION-examples">
234+
<refsect1 id="sql-dropfunction-examples">
235235
<!--==========================orignal english content==========================
236236
<title>Examples</title>
237237
____________________________________________________________________________-->
@@ -295,7 +295,7 @@ DROP FUNCTION update_employee_salaries();
295295
</para>
296296
</refsect1>
297297

298-
<refsect1 id="SQL-DROPFUNCTION-compatibility">
298+
<refsect1 id="sql-dropfunction-compatibility">
299299
<!--==========================orignal english content==========================
300300
<title>Compatibility</title>
301301
____________________________________________________________________________-->

0 commit comments

Comments
 (0)