summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* forgot to attach the patch. :(Bruce Momjian1999-06-011-4/+4
| | | | Vince.
* commented out PgConnection& references for now. May be using themBruce Momjian1999-06-013-5/+4
| | | | | | later. Vince.
* Fix some latent bugs in dllist.c (carelessness about settingTom Lane1999-05-313-40/+73
| | | | | all fields that should be set). Add a MoveToFront primitive to speed up one of the hotspots in SearchSysCache.
* Clean up memory leaks in LO operations by freeing LO's privateTom Lane1999-05-313-28/+83
| | | | memory context at transaction commit or abort.
* Generate a more specific error message when an operator usedTom Lane1999-05-311-5/+61
| | | | in an index doesn't have a restriction selectivity estimator.
* Round up shmem size estimate to 1Kb boundary.Tom Lane1999-05-311-1/+3
|
* Correct serious bug in hashtable expansion routine: under theTom Lane1999-05-311-38/+44
| | | | | right circumstances it would leave old and new bucket headers pointing to the same list of records.
* NT similar file update.Bruce Momjian1999-05-311-0/+4
|
* Release XactLockTable share lock immediately after this lock is acquiredVadim B. Mikheev1999-05-311-1/+2
| | | | | (no sense to hold it) or we'll be out of lock entries. Great thanks to Hiroshi Inoue.
* Clean up uninitialized-variable warning from egcs.Tom Lane1999-05-301-7/+12
| | | | (Curious that gcc doesn't complain about this code...).
* egcs thinks omitting the return type in a function declarationTom Lane1999-05-301-3/+3
| | | | is poor coding style. I agree.
* Replace static rcsid[] strings by IDENTIFICATION comments inTom Lane1999-05-305-14/+12
| | | | | file headers, to conform to established Postgres coding style and avoid warnings from gcc.
* configure.in forgot to do AC_LANG_C to reselect C-based testsTom Lane1999-05-302-320/+331
| | | | | after checking for presence of C++ compiler. Odd we hadn't seen any reports of problems before...
* Turns out that configure's test for HPUXMATHLIB didn't workTom Lane1999-05-292-103/+107
| | | | when used with egcs --- now it does.
* 1. Run all pg_dump queries in single serializable transaction.Vadim B. Mikheev1999-05-294-144/+42
| | | | | | 2. Get rid of locking when updating statistics in vacuum. 3. Use QuerySnapshot in COPY TO and call SetQuerySnashot in main tcop loop before FETCH and COPY TO.
* Fix xid table sizing.Vadim B. Mikheev1999-05-292-4/+5
|
* Missing semicolons in non-HAS_TEST_AND_SET code paths :-(Tom Lane1999-05-291-5/+5
|
* Avoid redundant SysCache searches in coerce_type, for anotherTom Lane1999-05-294-37/+24
| | | | few percent speedup in INSERT...
* new_relation_targetlist used to cause about 8 separate (andTom Lane1999-05-291-58/+74
| | | | | | redundant) SearchSysCache searches per table column in an INSERT, which accounted for a good percentage of the CPU time for INSERT ... VALUES(). Now it only does two searches in the typical case.
* Clean up inefficient and just plain bad code in some hot-spotTom Lane1999-05-292-187/+239
| | | | cache access routines.
* Repair performance problem in SI segment manipulations: iteratingTom Lane1999-05-285-73/+62
| | | | | | | | through MAXBACKENDS array entries used to be fine when MAXBACKENDS = 64. It's not so cool with MAXBACKENDS = 1024 (or more!), especially not in a frequently-used routine like SIDelExpiredDataEntries. Repair by making procState array size be the soft MaxBackends limit rather than the hard limit, and by converting SIGetProcStateLimit() to a macro.
* Clean up mention of gmake vs. make.Bruce Momjian1999-05-281-2/+6
|
* Update pygresql version stamp.Bruce Momjian1999-05-281-1/+1
|
* When closure of the backend connection is detected during pqFlush,Tom Lane1999-05-282-20/+70
| | | | | | | | do the right thing: look for a NOTICE message from the backend before we close our side of the socket. 6.4 libpq did not reliably print the backend's hara-kiri message, 'The Postmaster has informed me ...', because it only did the right thing if connection closure was detected during a read attempt instead of a write attempt.
* Make pg_dump dump ACL's by default, print warning on use of -z, and addBruce Momjian1999-05-277-30/+35
| | | | new -x option to skip acl dump.
* More info is in sgml and html docs so this is now obsolete.Thomas G. Lockhart1999-05-271-84/+0
|
* FAQs contributed for this release.Thomas G. Lockhart1999-05-272-0/+297
|
* Markup fixes.Thomas G. Lockhart1999-05-272-232/+489
|
* Markup fixes.Thomas G. Lockhart1999-05-276-544/+621
| | | | Update for v6.5 release.
* Significant updates from Vince Vielhaber.Thomas G. Lockhart1999-05-271-280/+417
|
* Remove disclaimer about exact numeric types. They work now!Thomas G. Lockhart1999-05-271-17/+8
|
* Refresh FreeBSD info.Thomas G. Lockhart1999-05-271-7/+7
|
* Significant update from Vince Vielhaber.Thomas G. Lockhart1999-05-271-451/+543
|
* Update release notes for 6.5.Bruce Momjian1999-05-271-0/+241
|
* Clean up release sgml file.Bruce Momjian1999-05-272-2/+2
|
* I am not sure if libpq++ will compile with non g++ compilers,Bruce Momjian1999-05-271-2/+2
| | | | | | | but the Makefile does break non g++. <<mak.patch>> Andreas
* Fix for crypt memory leak, from James ThompsonBruce Momjian1999-05-271-4/+4
|
* Patch from Andreas: when CREATE TABLE is followed by CREATE INDEXTom Lane1999-05-262-31/+47
| | | | | before any tuples are loaded, preserve the default '1000 tuples' table size estimate.
* Fix pg_dump to use the same maximum-query-size constant asTom Lane1999-05-263-95/+90
| | | | | the backend does. Remove unnecessary limitation on field size in dumpClasses_dumpData (ie, -d or -D case).
* Fix compile of plpgsql by adding 'extern int yylineno.'Bruce Momjian1999-05-261-1/+3
|
* Display numeric precision on \d.Bruce Momjian1999-05-261-1/+5
|
* Allow GROUPs to be dumped properly.Bruce Momjian1999-05-261-3/+5
|
* Add chapters on CVS access, MVCC, SQL theory to the docs.Thomas G. Lockhart1999-05-2613-1159/+778
| | | | | | | Add an appendix with more details on date/time attributes and handling. Update most references to Postgres version numbers to 6.5, *except* for the porting list which will require a report from a successful installation to be updated.
* Chapter on multi-version concurrency control from Vadim.Thomas G. Lockhart1999-05-261-0/+545
| | | | | Some wording changes from Vadim's original text doc. Processes cleanly, but may need fixup.
* Add new reference pages for postmaster and postgres.Thomas G. Lockhart1999-05-263-66/+77
| | | | Normalize markup for vacuumdb; content is the same.
* First copy from the man pages.Thomas G. Lockhart1999-05-262-0/+720
| | | | postgres-ref.sgml is not yet marked up.
* Fix for NT from Horak DanielBruce Momjian1999-05-261-1/+5
|
* Disable use of -o and -d pg_dump options together. Can't set oids inBruce Momjian1999-05-261-30/+38
| | | | inserts. Change some variables to bool to be clearer.
* Add fix for 0x7fU constants to pgindentBruce Momjian1999-05-263-9/+32
|
* Allow pg_dump -v display proper table/sequence count display.Bruce Momjian1999-05-261-4/+7
|