BUG #1912: select into a table missing a row

Started by Keith Randallover 20 years ago1 messagesbugs
Jump to latest
#1Keith Randall
randallk@gmail.com

The following bug has been logged online:

Bug reference: 1912
Logged by: Keith Randall
Email address: randallk@gmail.com
PostgreSQL version: 8.1beta2
Operating system: Linux 2.4.21-15 Redhat enterprise
Description: select into a table missing a row
Details:

I'm missing a row when I generate a table off a view.

select count(*) from foo;

20811

select * into temp from foo;
select count(*) from temp;

20810