summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-07-06Functions on 'text' type updated to new fmgr style. 'text' isTom Lane
now TOAST-able.
2000-07-05Update textin() and textout() to new fmgr style. This is just phaseTom Lane
one of updating the whole text datatype, but there are so dang many calls of these two routines that it seems worth a separate commit.
2000-07-05Make the regression tests safe for TOAST.Tom Lane
2000-07-05Fix typo (extraneous semicolon) in fd.c patch to avoid excess seeks.Tom Lane
Now it skips useless SEEK_CUR 0 calls too, as intended.
2000-07-05Enable pg_rewrite to be toasted (unlimited size of views and rules).Jan Wieck
Jan
2000-07-05add check for libz compression library for pg_dumpMarc G. Fournier
2000-07-05Changed TOAST relations to have relkind RELKIND_TOASTVALUE.Jan Wieck
Special handling of TOAST relations during VACUUM. TOAST relations are vacuumed while the lock on the master table is still active. The ANALYZE flag doesn't propagate to their vacuuming because the toaster access routines allways use index access ignoring stats, so why compute them at all. Protection of TOAST relations against normal INSERT/UPDATE/DELETE while offering SELECT for debugging purposes. Jan
2000-07-05autoconfBruce Momjian
2000-07-05attached to this mail is a patch from a colleague that makesBruce Momjian
PostgreSQL-7.0.2 run on Linux for the Intel-IA64 architecture. It also fixes a bug in the configure scripts that caused configure to fail on the fcntl(F_SETLK) test. This fix triggered a bug in the fcntl(F_SETLK) code of the Linux kernel when used on unix domain sockets resulting in postmaster to segfault immediately after startup. There is a fix available and included in the kernel that will be on SuSE Linux 7.0, but kernels <= 2.2.16 still have this bug. Reinhard Max
2000-07-05Small fix for ALTER TABLE xxx* ADD COLUMN ...Jan Wieck
Inherited child tables must not be open during creation of TOAST table Jan
2000-07-05Automatically create toast tables on ALTER TABLE ... ADD COLUMNJan Wieck
and SELECT ... INTO ... too. Jan
2000-07-05Bugfix in ALTER TABLE CREATE TOAST TABLEJan Wieck
Automatically create toast table at CREATE TABLE if new table has toastable attributes. Jan
2000-07-05Fixed lztextlen() bug in MULTIBYTE, still thinking that lztextJan Wieck
does compression itself the old way. Jan
2000-07-05U Re-add flock TODO.detail.Bruce Momjian
2000-07-05Update TODO list.Bruce Momjian
2000-07-05New resultmap for Alpha, from Ryan KirkpatrickBruce Momjian
2000-07-04Fix broken pg_dump makefilePeter Eisentraut
2000-07-04Moving toaster out of NO ELOG area in heap_update().Jan Wieck
Jan
2000-07-04make TEMP -> TEMPORARYBruce Momjian
2000-07-04Make pgdump_oid a temp table. Rename to pg_dump_oid.Bruce Momjian
2000-07-04Expand secondary password file feature, so that you can use thesePeter Eisentraut
files to restrict the set of users that can connect to a database but can still use the pg_shadow password. (You just leave off the password field in the secondary file.)
2000-07-04Fix thinko in my last pg_dumpall changePeter Eisentraut
2000-07-04Makefile cleanup from Karel.Bruce Momjian
2000-07-04Added CVS headerJan Wieck
Jan
2000-07-04New contrib module for statistical mathematicsJan Wieck
Jan
2000-07-04pg_dump patch from Philip WarnerBruce Momjian
2000-07-04Update TODO list.Bruce Momjian
2000-07-04Now that I look at it, is_stopword() is broken and always has been.Tom Lane
Doesn't anyone remember how to program a binary search??
2000-07-04Result of strcmp() is a signed int. Per bug reportTom Lane
from Paul McGarry.
2000-07-04Make toast-table creation and deletion work somewhat reliably.Tom Lane
Don't go through pg_exec_query_dest(), but directly to the execution routines. Also, extend parameter lists so that there's no need to change the global setting of allowSystemTableMods, a hack that was certain to cause trouble in the event of any error.
2000-07-04Update TODO list.Bruce Momjian
2000-07-04Remove unused TODO.detail files.Bruce Momjian
2000-07-04Update tablespaces TODO.detail item.Bruce Momjian
2000-07-04Update TODO list.Bruce Momjian
2000-07-04DataFill() has no business resetting xact status bitsTom Lane
in the infomask of the provided tuple.
2000-07-04miscVadim B. Mikheev
2000-07-04unlock buffer before releasing in heap_insertVadim B. Mikheev
+unlock buffer in heap_fetch under !ItemIdIsUsed().
2000-07-04tuptoaster.h should surely not #include postgres.h.Tom Lane
2000-07-03Add missing #include for TOAST.Tom Lane
2000-07-03TOAST changes to catalogJan Wieck
Jan
2000-07-03TOASTJan Wieck
WARNING: This is actually broken - we have self-deadlocks due to concurrent changes in buffer management. Vadim and me are working on it. Jan
2000-07-03Move global internal files to PGDATA/global.Peter Eisentraut
2000-07-03Move PGPORT envar handling to ResetAllOptions(). Improve long optionsPeter Eisentraut
parsing to not clobber the optarg string -- so that we can bring SetOptsFile() up to speed.
2000-07-03Have pg_dumpall write CREATE USER and CREATE GROUP commands instead of rawPeter Eisentraut
COPYs of pg_shadow and pg_group. It also turns out that pg_dumpall was all but broken for multiple servers running at non-standard port numbers. You might get the users and groups from one server and the databases from another. Fixed that. A little user interface and code cleanup along with that. This also takes care of the portability bug discussed in "[BUGS] pg_dumpall" in March 2000.
2000-07-03 Very small changes in the contrib's pg_dumplo in the attache.Bruce Momjian
And: Note, Bruce I found in the contrib tree any files that we forget remove during contrib cleaning. Please remove these files: contrib/lo/test.sql contrib/pg_dumplo/Makefile.out contrib/pgbench/pgbench_jis.doc contrib/spi/new_example.example contrib/spi/README.MAX Thanks. Karel
2000-07-03In the attache is new (correct) version. I add TZ (timezone) supportBruce Momjian
for to_char() too. Karel
2000-07-03Add a check of HEAP_MARKED_FOR_UPDATE in HeapTupleSatisfiesDirty().Hiroshi Inoue
This enables unique constraint check in case of SELECT FOR UPDATEd.
2000-07-03Clean up memory-context stuff, other minor infelicities.Tom Lane
2000-07-03Remove unused variable. (Hey Peter, you use gcc, why didn't youTom Lane
notice this warning?)
2000-07-03heap' loggingVadim B. Mikheev