summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1998-09-05Use alternate form for long-long-int to be compatible with AIX.Thomas G. Lockhart
%Ld worked with gcc, but %lld works with both gcc and AIX.
1998-09-04offsetof cleanup.Bruce Momjian
1998-09-04t_bits alignment fix from Tatsuo IshiiBruce Momjian
1998-09-04Try this snprintf() implementation, used in sendmail...Marc G. Fournier
1998-09-04From: David Hartwig <daybee@bellatlantic.net>Marc G. Fournier
I put some extra checks to make sure a query was a good candidate for rewrite into a UNION. Besides the existing checks: 1. Make sure the AND/OR tree was rectangular. ( i.e. 3 X 4 or 10 X 3) 2. Only one table. 3. Must have an AND dimension. 4. At least 9 OP expressions total Also cleaned up and commented.
1998-09-04libpgtcl cleanups for Tom Lane.Bruce Momjian
1998-09-03Allow insert statements to have every columnThomas G. Lockhart
supplied by a DEFAULT clause. Enables INSERT INTO TABLE DEFAULT VALUES...
1998-09-03Update to match newest gram.c since both are generated from gram.y.Thomas G. Lockhart
Should be done every time gram.c is refreshed.
1998-09-03Oops missing file.Bruce Momjian
1998-09-03patch cleanups.Bruce Momjian
1998-09-03[Part #1: Type: text/plain, Encoding: 7bit, Size: 59]Bruce Momjian
I will be cleaning this up more before the Oct 1 deadline. David Hartwig. AND/OR fix.
1998-09-03Fix ifdef.Bruce Momjian
1998-09-03New stuff from Peter Mount for jdbc.Bruce Momjian
1998-09-03New stuff for 6.4 jdbc.Bruce Momjian
Peter mount
1998-09-03> Yikes, that is certainly not standard C. I have never seen thatBruce Momjian
before. > Looks like a GNU-ism. I nice one, but still a GNU-ism. Sorry, I didn't know it is a GNU extension. I have written this patch which should fix the problem. Let me know if you still have problems. Massimo Dal Zotto
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