Hide Forgot
Description of problem: I use pg_dump to dump a database with several tables with the same schema. When looking at the data I see it inserted it into the wrong table. Version-Release number of selected component (if applicable): 8.4.8 How reproducible: not sure Steps to Reproduce: 1. create database with several tables with the same column schema. 2. pg_dump the database. 3. load it to a new database. Actual results: the data is not inserted to the right table. Expected results: restoration creates the same database. Additional info: I can provide the dump (it's very large) and the ip of the database I dumped.
Please provide a concrete test case. I've never heard of such behavior and cannot duplicate it here. The test case I tried is create schema s1; create table s1.t1 (f1 text); insert into s1.t1 values ('schema s1'); create schema s2; create table s2.t1 (f1 text); insert into s2.t1 values ('schema s2'); create schema s3; create table s3.t1 (f1 text); insert into s3.t1 values ('schema s3'); and this dumps and restores just fine.
Found out the difference was due to time zone difference...