提交 ae793ff6 编写于 作者: T Tom Lane

Fix incorrect backslashing in regexp example, per Robert Treat.

上级 768eaf14
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.20 2005/01/04 00:39:53 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.21 2005/05/01 15:57:59 tgl Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -167,8 +167,8 @@ where <replaceable class="PARAMETER">constraint</replaceable> is: ...@@ -167,8 +167,8 @@ where <replaceable class="PARAMETER">constraint</replaceable> is:
<programlisting> <programlisting>
CREATE DOMAIN us_postal_code AS TEXT CREATE DOMAIN us_postal_code AS TEXT
CHECK( CHECK(
VALUE ~ '^\d{5}$' VALUE ~ '^\\d{5}$'
OR VALUE ~ '^\d{5}-\d{4}$' OR VALUE ~ '^\\d{5}-\\d{4}$'
); );
CREATE TABLE us_snail_addy ( CREATE TABLE us_snail_addy (
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册