pgsql/src/bin/psql (describe.c large_obj.c)

From: Tom Lane <tgl(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/bin/psql (describe.c large_obj.c)
Date: 2000-10-24 01:38:40
Message-ID: 200010240138.e9O1ceL65921@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Date: Monday, October 23, 2000 @ 21:38:40
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/bin/psql
from hub.org:/home/projects/pgsql/tmp/cvs-serv65693/src/bin/psql

Modified Files:
describe.c large_obj.c

----------------------------- Log Message -----------------------------

Major overhaul of large-object implementation, by Denis Perchine with
kibitzing from Tom Lane. Large objects are now all stored in a single
system relation "pg_largeobject" --- no more xinv or xinx files, no more
relkind 'l'. This should offer substantial performance improvement for
large numbers of LOs, since there won't be directory bloat anymore.
It'll also fix problems like running out of locktable space when you
access thousands of LOs in one transaction.
Also clean up cruft in read/write routines. LOs with "holes" in them
(never-written byte ranges) now work just like Unix files with holes do:
a hole reads as zeroes but doesn't occupy storage space.
INITDB forced!

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2000-10-24 01:38:42 pgsql/src/include/catalog (pg_largeobject.h catname.h catversion.h indexing.h pg_class.h)
Previous Message Tom Lane 2000-10-24 01:38:38 pgsql/src/bin/pgtclsh (updateStats.tcl)