Re: - WIP Patch Updatable Cursor - Mailing list pgsql-patches

From John Bartlett
Subject Re: - WIP Patch Updatable Cursor
Date
Msg-id !~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAA/w1P36NVXkuUGCDGiycCfMKAAAAQAAAAOYTSnVrqlkKlNDJ5Wv6uogEAAAAA@fast.fujitsu.com.au
Whole thread Raw
In response to Re:  (Heikki Linnakangas <heikki@enterprisedb.com>)
Responses Re: [HACKERS] - WIP Patch Updatable Cursor
List pgsql-patches
Hi,

A list of ctids is stored in the file. 

The file is used to store the ctids during an updatable cursor transaction. 

It is set up as a permanent file as it has a potential lifetime of
preserving data between crashes of the backend. Temporary files tend to be
used for data that is defined within a single command. In this case the file
needs to exist within a transaction and across backend processes.

The file gram.y has been corrected in my version. 

The files ctidListStore.c and ctidListStore.h were pasted into the patch
file, as the diff -N command produced a file of several hundred thousand
lines.

Regards,
John Bartlett


-----Original Message-----
From: Heikki Linnakangas [mailto:hlinnaka@gmail.com] On Behalf Of Heikki
Linnakangas
Sent: Tuesday, 27 February 2007 10:03 PM
To: John Bartlett
Cc: pgsql-patches@postgresql.org; pgsql-hackers@postgresql.org
Subject: Re: [PATCHES]

John Bartlett wrote:
> The community may wish to comment on the following issue:
> 
> 1)    At present the file that will contain the list of ctids is going
into
> a new directory called pg_ctids, analogous to pg_twophase, and also stored
> in the pg_data directory.

I don't understand this. What's stored in the file and why? If they're 
only needed within the transaction, surely a temp file would be more 
appropriate?

The new ctidListStore.c file in the patch is not in a valid diff-format. 
I also noticed that you've moved the line beginning with "CREATE_ROLE" 
in gram.y so that it's not in alphabetical order anymore.

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

This is an email from Fujitsu Australia Software Technology Pty Ltd, ABN 27 003 693 481. It is confidential to the
ordinaryuser of the email address to which it was addressed and may contain copyright and/or legally privileged
information.No one else may read, print, store, copy or forward all or any of it or its attachments. If you receive
thisemail in error, please return to sender. Thank you.
 

If you do not wish to receive commercial email messages from Fujitsu Australia Software Technology Pty Ltd, please
emailunsubscribe@fast.fujitsu.com.au
 


pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS]
Next
From: "FAST PostgreSQL"
Date:
Subject: Re: WIP Patch - Updateable Cursors