ANSI Compliant Inserts

From: Rod Taylor <rbt(at)zort(dot)ca>
To: pgsql-patches(at)postgresql(dot)org
Subject: ANSI Compliant Inserts
Date: 2002-04-15 02:07:47
Message-ID: 1018836468.8467.1.camel@knight.zort.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

Reports missing values as bad.

BAD: INSERT INTO tab (col1, col2) VALUES ('val1');
GOOD: INSERT INTO tab (col1, col2) VALUES ('val1', 'val2');

Regress tests against DEFAULT and normal values as they're managed
slightly different.

Attachment Content-Type Size
ansiinsert.patch text/plain 3.4 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2002-04-15 02:08:14 Re: [PATCHES] WITH DELIMITERS in COPY
Previous Message Gavin Sherry 2002-04-15 02:02:46 Re: [PATCHES] WITH DELIMITERS in COPY

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2002-04-15 02:08:14 Re: [PATCHES] WITH DELIMITERS in COPY
Previous Message Gavin Sherry 2002-04-15 02:02:46 Re: [PATCHES] WITH DELIMITERS in COPY