summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1998-09-11Remove lld from LONG LONG nameBruce Momjian
1998-09-11autoconfBruce Momjian
1998-09-11The attached patches fix the following problems:Bruce Momjian
1. The UnixWare tas macro was reformatted (by indent or it like?) which caused it to break. The asm macro construct is very particular about the %mem construct -- it has to start in column 1. 2. When compiling libpq++, g++ was used even if configure found the C++ com- piler to be CC. 3. When compiling libpq++, '-Wno-error' was added to CXXFLAGS, even if the compiler wasn't g++. Billy G. Allie
1998-09-11autoconfBruce Momjian
1998-09-11Remove %qd.Bruce Momjian
1998-09-11Tatsuo Ishii fix for pg_user crash, with slight modification.Bruce Momjian
1998-09-11%lld fix.Bruce Momjian
1998-09-10long long cleanupBruce Momjian
1998-09-10Added attributes for primary/unique/foreign keys...Vadim B. Mikheev
1998-09-10Fix for length in libpq from Tom Lane.Bruce Momjian
1998-09-10autoconfBruce Momjian
1998-09-10%lld not %LdBruce Momjian
1998-09-10More bsdi 4.0 additions.Bruce Momjian
1998-09-10bsdi 4.0.Bruce Momjian
1998-09-10Add some support for BSDI 4.0.Bruce Momjian
1998-09-10Porting efforts... :)Vadim B. Mikheev
1998-09-10flock --> fcntlVadim B. Mikheev
1998-09-10cleanupBruce Momjian
1998-09-10Cleanup of configure.inBruce Momjian
1998-09-10autoconfBruce Momjian
1998-09-10Allow long long on BSDI.Bruce Momjian
1998-09-09Aix4 fixes from Andreas ZeugswetterBruce Momjian
1998-09-09>Bruce Momjian
> Open portability issues: > > /usr/local should be searched for lib and include for all ports if present > (currently not working, I have libreadline there) > > the stream functions on AIX need a size_t for addrlen's in fe-connect.c and pqcomm.c. > > lock.c still has an incompatible TPRINTF(flags, args...) definition Massimo
1998-09-09Hi patchers/hackers.Bruce Momjian
Here's a patch for initdb that does two things. 1) Encloses the created rulenames in quotes to preserve case in the creation step. (stores _RETpg... instead of _retpg...) I believe _RET is standard for views. 2) Renames pg_view to pg_views and pg_rule to pg_rules. I believe Jan and myself agreed this would be a "good idea" Keith Parks
1998-09-09Fix using GroupBy/non-GroupBy expressions in HAVING.Vadim B. Mikheev
1998-09-09Fix for indexing problem (?): heap tuple was pfree-d before ↵Vadim B. Mikheev
CatalogIndexInsert()...
1998-09-08AIX align fix.Bruce Momjian
1998-09-08Fix for macro for AIX.Bruce Momjian
1998-09-08Fix GroupBY func broken by HAVING.Vadim B. Mikheev
1998-09-07Alignment cleanup so no more massive switch statements for alignment,Bruce Momjian
just two macros.
1998-09-06BTW, in catalog/pg_type.h:Bruce Momjian
#define Anum_pg_index_indisunique 8 I think this should be 9. Tatsuo Ishii
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.