summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1998-09-03Remove \r\n in windows makefile.Bruce Momjian
1998-09-03O2. Seems tas() for PPC (storage/buffer/s_lock.c) never works ifBruce Momjian
compiled with -O0. Included are patches that should fix the problem (of course I have confirmed -O2 works with this patch). BTW, here is a platforms/regression test failure(serious one--backend death) matrix. Tatsuo Ishii
1998-09-03 Oops. I'll fix this.Bruce Momjian
Here are patches for bin/createdb/createdb.sh. -- Tatsuo Ishii t-ishii@sra.co.jp
1998-09-03Attached is a patch to remove the definitions of libpq's internalBruce Momjian
structs from libpq-fe.h, as we previously discussed. There turned out to be sloppy coding practices in more places than I had realized :-(, but all in all I think it was a well-worth-while exercise. I ended up adding several routines to libpq's API in order to respond to application requirements that were exposed by this work. I owe the docs crew updates for libpq.sgml to describe these changes. I'm way too tired to work on the docs tonight, however. This is the last major change I intend to submit for 6.4. I do want to see if I can make libpgtcl work with Tcl 8.0 before we go final, but hopefully that will be a minor bug fix.
1998-09-02> David Hartwig wrote:Bruce Momjian
> > Please apply this HAVING regression patch. > > My bad. It is caused by a known bug having to do with GROUP BY. It ain't$ > > nothing to do with HAVING. For some reason the bug went away for a while, $ > > script. It must have, because that is how I created the expected file. :( > > > > A patch to the regression will be forthcoming. >
1998-09-02Fix for indexing problems.Bruce Momjian
1998-09-02Update to support the CREATE TABLE DEFAULT VALUES statement in gram.y.Thomas G. Lockhart
1998-09-02Support CREATE TABLE DEFAULT VALUES statement.Thomas G. Lockhart
1998-09-02autoconfBruce Momjian
1998-09-02Fix for install pathBruce Momjian
1998-09-02updateBruce Momjian
1998-09-02install file search fixBruce Momjian
1998-09-02autoconfBruce Momjian
1998-09-02Configure fix for install script search.Bruce Momjian
1998-09-01re-add bsdi makefileBruce Momjian
1998-09-01bsdi cleanupBruce Momjian
1998-09-01cleanupBruce Momjian
1998-09-01Fix message delimiters for substitution by sed script during installation.Thomas G. Lockhart
They were missing a "PG_" prefix so were not substituted properly.
1998-09-01cleanups of indexing.cBruce Momjian
1998-09-01cleanupBruce Momjian
1998-09-01cleanupBruce Momjian
1998-09-01OK, folks, here is the pgindent output.Bruce Momjian
1998-09-01Renaming cleanup, no pgindent yet.Bruce Momjian
1998-08-31indexing.c cleanups.Bruce Momjian
1998-08-31Fix for regprocBruce Momjian
1998-08-31Fix for regprocout, use underscore, not parens.Bruce Momjian
1998-08-31OR clause index fixBruce Momjian
1998-08-31Two spaces after a colon.Bruce Momjian
1998-08-31Preserver pg_log and pg_variable in upgrade. Cleanups.Bruce Momjian
1998-08-30Fix for possible releasebuffer bug.Bruce Momjian
1998-08-30From: Massimo Dal Zotto <dz@cs.unitn.it>Marc G. Fournier
1998-08-30Types removed from Postgres: oidint2, oidint4, oidname.Thomas G. Lockhart
Fix example columns in alter_table.out to use datetime and timespan as a substitute for oidint4 and oidname.
1998-08-30From: Tom Lane <tgl@sss.pgh.pa.us>Marc G. Fournier
We're carrying around a copy of install-sh in case the local system has no install script. It's wasted baggage, because configure doesn't know it's there :-(. (Apparently everyone who's used postgres lately already had an install script somewhere in their path. I happened to try to run configure with a minimal PATH tonight, and it promptly gave up for lack of an install program.) Here's the patch.
1998-08-30From: Massimo Dal Zotto <dz@cs.unitn.it>Marc G. Fournier
After some playing with gdb I found that in printtup() there is a non null attribute with typeinfo->attrs[i]->atttypid = 0 (invalid oid). Unfortunately attibutes with invalid type are neither printed nor marked as null, and this explains why psql doesn't get all the expected data. So I made this patch to printtup():
1998-08-30Make old db directory configurable.Bruce Momjian
1998-08-30Update man pages.Bruce Momjian
1998-08-30New pg_upgrade command.Bruce Momjian
1998-08-30Improve distclean.Bruce Momjian
1998-08-30Add missing pgaccess file.Bruce Momjian
1998-08-30autoconfBruce Momjian
1998-08-30--without fix from BrookBruce Momjian
1998-08-30Add missing file.Bruce Momjian
1998-08-30Update INSTALL, etc. for release 6.4. Update pgaccess to 0.88.Bruce Momjian
1998-08-30Update of changesBruce Momjian
1998-08-29Prevent file descriptor leak from failed COPY.Bruce Momjian
1998-08-29Ok. BTW Mr. Kataoka who is maintaing Japanese version of PostgreSQLBruce Momjian
ODBC driver have found a bug in 6.3.2 pg_dump and have made patches. I confirmed that the same bug still exists in the current source tree. So I made up patches based on Kataoka's. Here are some explanations. o fmtId() returns pointer to a static memory in it. In the meantime there is a line where is fmtId() called twice without saving the first value returned by fmtId(). So second call to fmtId() will break the first one. o findTableByName() looks up a table by its name. if a table name contanins upper letters or non ascii chars, fmtId() will returns a name quoted in double quotes, which will not what findTableByName() wants. The result is SEG fault. -- Tatsuo Ishii t-ishii@sra.co.jp
1998-08-29Fix scanner name length trimming.Bruce Momjian
1998-08-29Better error message if table exists.Bruce Momjian
1998-08-29This patch resolves some regression test failures caused by platformBruce Momjian
dependencies. David Hartwig
1998-08-29This is the first (of hopefully few) AIX port patches. This patchBruce Momjian
was tested with Linux/GCC. I still have some issues with with the snprintf() function. David Hartwig