Skip to content

Commit 1b1bfc6

Browse files
authored
Update xfunc.sgml
-- 不用转义
1 parent 71d40c0 commit 1b1bfc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

postgresql/doc/src/sgml/xfunc.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ SELECT mleast(10, -1, 5, 4.4);
16051605
array, as if you had written
16061606

16071607
<screen>
1608-
SELECT mleast(ARRAY[10, -1, 5, 4.4]); -&minus; doesn't work
1608+
SELECT mleast(ARRAY[10, -1, 5, 4.4]); -- doesn't work
16091609
</screen>
16101610

16111611
You can't actually write that, though &mdash; or at least, it will
@@ -1634,7 +1634,7 @@ SELECT mleast(10, -1, 5, 4.4);
16341634
实际上,所有实际参数在<literal>VARIADIC</literal>位置或之后都被收集到一个一维数组中,就好像你写了
16351635

16361636
<screen>
1637-
SELECT mleast(ARRAY[10, -1, 5, 4.4]); -&minus; 不起作用
1637+
SELECT mleast(ARRAY[10, -1, 5, 4.4]); -- 不起作用
16381638
</screen>
16391639

16401640
但实际上你不能这样写 &mdash; 或者至少,它不会匹配这个函数定义。标记为
@@ -4335,7 +4335,7 @@ ________________________________________________________-->
43354335
</row>
43364336
________________________________________________________-->
43374337
<row>
4338-
<entry><type>float8</type> (<type>双精度</type>)</entry>
4338+
<entry><type>float8</type> (<type>double precision</type>)</entry>
43394339
<entry><type>float8</type></entry>
43404340
<entry><filename>postgres.h</filename></entry>
43414341
</row>

0 commit comments

Comments
 (0)