Skip to content

Commit 847a4c1

Browse files
committed
Merge pull request #87 from postgres-cn/ChenHuajun-patch-1
一处翻译错误纠正(integer->numeric)
2 parents f35eb33 + b853666 commit 847a4c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgresql/doc/src/sgml/ref/create_cast.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ SELECT CAST ( 2 AS numeric ) + 4.0;
176176
SELECT 2 + 4.0;
177177
</programlisting>
178178
解析器初始时标记常量分别为<type>integer</>和<type>numeric</>。
179-
在系统目录中没有<type>integer</> + <type>numeric</>的操作符, 但是有一个<type>integer</> + <type>numeric</>操作符。
179+
在系统目录中没有<type>integer</> + <type>numeric</>的操作符, 但是有一个<type>numeric</> + <type>numeric</>操作符。
180180
若<type>integer</>到<type>numeric</>的转换是可以执行的并且标记为 <literal>AS IMPLICIT</> — 则该查询将会成功执行。
181181
解析器将使用隐性的转换并按所写的查询生成结果:
182182
<programlisting>

0 commit comments

Comments
 (0)