Re: testing HS/SR - invalid magic number

From: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>
To: Erik Rijkers <er(at)xs4all(dot)nl>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: testing HS/SR - invalid magic number
Date: 2010-04-14 06:18:21
Message-ID: 4BC55E2D.7040605@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Erik Rijkers wrote:
> On Wed, April 14, 2010 02:34, Erik Rijkers wrote:
>> This replication test that was working well earlier (it ran daily), stopped working
>> after reinstall of new instances of cvs HEAD. I think the change must have been today (or at least
>> recent).
>>
>> This test copies a schema from a 8.4.3 instance to the 9.0 primary:
>>
>> pg_dump -c -h /tmp -p 5432 -n public --no-owner --no-privileges ms \
>> | psql -1qtA -h /tmp -p 7575 -d replicas
>>
>
> The above does indeed not work anymore, but the logfiles I sent a little earlier were from
> a different pg_dump statements:
>
> pg_dump -c -h /tmp -p 5432 -t public.mytable --no-owner --no-privileges ms \
> | psql -1qtA -h /tmp -p 7575 -d replicas
>
> ... copying table by table to see if that improved matters, which it didn't.

Streaming replication is completely oblivious of what's in the WAL it
streams, you would probably get the same result with bulk insert or update.

--
Heikki Linnakangas
EnterpriseDB http://www.enterprisedb.com

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Heikki Linnakangas 2010-04-14 06:23:42 Re: testing HS/SR - invalid magic number
Previous Message Pavel Golub 2010-04-14 06:18:07 Bug in CREATE FUNCTION with character types if RETURNS TABLE used