Short document fix

From: Hitoshi Harada <umi(dot)tanuki(at)gmail(dot)com>
To: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Short document fix
Date: 2011-08-23 20:53:43
Message-ID: CAP7QgmnEdUETyv8L2cH10T0aF5cZV+fKhkYaLkd02TF50__TxQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

In the CREATE DOMAIN reference page of the current HEAD, it says

---
CREATE DOMAIN us_postal_code AS TEXT
CHECK(
VALUE ~ '^\\d{5}$'
OR VALUE ~ '^\\d{5}-\\d{4}$'
);
---

but I believe it should conform the standard string style now that the
default is standard_conforming_strings = on. I didn't grep if there
other pages like this.

Regards,
--
Hitoshi Harada

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2011-08-23 21:14:44 Re: 9.1rc1: TRAP: FailedAssertion("!(item_width > 0)", File: "costsize.c", Line: 3274)
Previous Message Alvaro Herrera 2011-08-23 20:51:43 Re: skip WAL on COPY patch