Re: [HACKERS] RFC: Inserting multiple values via INSERT ... VALUES ...

2001-08-14 Thread Tom Lane
Liam Stewart <[EMAIL PROTECTED]> writes: > While it > should be possible to modify the Result node to handle multiple > tuples, I would rather not use Result as Result is also used for > constant qualifications. If you don't want to extend Result, I'd suggest generating a plan that is an Append o

[HACKERS] RFC: Inserting multiple values via INSERT ... VALUES ...

2001-08-14 Thread Liam Stewart
There are currently a bunch of items on the Todo relating to SQL INSERT statements, one of which is allowing INSERTs of the following form: INSERT INTO tab [(c1, c2, ...)] VALUES (x1, y1, ...), (x2, y2, ...), ... I had written a quick 'n dirty patch that accomplished this by splitting an INSERT