Re: [Postgres-xc-general] "Tuple not found error" during Index creation - Mailing list pgsql-general

From Michael Paquier
Subject Re: [Postgres-xc-general] "Tuple not found error" during Index creation
Date
Msg-id CAB7nPqQXhBj2TS3=3FA3FtvrFXiszrs4PsiDMSHXSVq1x6qROg@mail.gmail.com
Whole thread Raw
In response to Re: [Postgres-xc-general] "Tuple not found error" during Index creation  (Sandeep Gupta <gupta.sandeep@gmail.com>)
Responses Re: [Postgres-xc-general] "Tuple not found error" during Index creation  (Mason Sharp <msharp@translattice.com>)
List pgsql-general
On Wed, Dec 11, 2013 at 1:17 PM, Sandeep Gupta <gupta.sandeep@gmail.com> wrote:
> Hi Michael,
>
>  I can provide the table schema and the data over which indexing almost
> always fails with tuple not found error.
> Would this be of help.  The other issue is that file is 3.2GB  so we would
> have work some logistics to transfer this across.
Transferring a data file of a couple of gigs is out of question. My
point was to know if you are able to create a self-contained test case
using automatically generated data of this type:
create table foo as select generate_series(1,100000000) as a, 'bbbb'::text as b;
create index fooi on aa(a);
Or smth like that.
This way you wouldn't need to 1) publish your schema, 2) transfer huge
files of data. And this would make tracking of this error somewhat
easier.
Regards,
--
Michael


pgsql-general by date:

Previous
From: Sandeep Gupta
Date:
Subject: Re: [Postgres-xc-general] "Tuple not found error" during Index creation
Next
From: David Johnston
Date:
Subject: Re: Trigger Firing Order