summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1996-11-20Can't add a keyword without making it a keyword. :-)Bruce Momjian
D'Arcy J.M. Cain | Democracy is three wolves
1996-11-20Otherwise "gmake install" fails.Bruce Momjian
D'Arcy J.M. Cain | Democracy is three wolves
1996-11-20There is a bug in aclinsert3 in the code which update the acl arrays.Bruce Momjian
When an acl item is added or updated the new entry is deleted if it has no permissions and the acl array is shrinked. This is is done by decrementing the number of items without updating the corresponding array size. The array with the incorrect size is later read by pg_aclcheck and the entry count is used to allocate a new array while the array size is used to copy the old one. This causes a memory corruption and a backend crash. This happens only to normal user as the administrator bypasses acl checks. Massimo Dal Zotto
1996-11-20 following is a little fix for libpq.Bruce Momjian
PQexec handles the possibility of multiple results from one query by simply submitting an empty query after the first result and waiting for an 'I' message. Rules can generate errors with transaction abort after the first 'C' message was recieved (e.g. if a C-language function used in a rule calls elog(WARN, ...)). Thus we have to look for. Jan(wieck@sapserv.debis.de)
1996-11-20Fix \g filename. Free allocated memory and don't use memory that hasBruce Momjian
been freed.
1996-11-20Here is the patch for pg_dump not handling NULL values in 'insert'Bruce Momjian
mode properly. This will apply correctly to 1.09 & 2.0 sources. From David H. Bennett
1996-11-20Fix for man Makefile. Added 'all'.Bruce Momjian
1996-11-19Make install change for man filesBruce Momjian
1996-11-19Removed old Assert's used during development.Bruce Momjian
1996-11-19This file has not been part of the regression test for many releases.Bryan Henderson
1996-11-19The routines in magic.c have moved to the more accessible version.c.Bryan Henderson
1996-11-19Eliminate mk/ directory. The tyranny of the included make file templates isBryan Henderson
ended!
1996-11-19Build man/ instead of ../doc. Man pages have moved there.Bryan Henderson
1996-11-18Added DLSUFFIX to bsdi.Bruce Momjian
1996-11-18Rename SLSUFF to DLSUFFIXBruce Momjian
1996-11-18Include some macros that used to be -D options in Makefile.global.Bryan Henderson
1996-11-18Remove linux define of __USE_POSIX, which doesn't appear to do anything.Bryan Henderson
1996-11-18Add comments about the diversity of signal functionality. Came fromBryan Henderson
Makefile.global.
1996-11-18Make port-specific link libraries defined for linking backend more globalBryan Henderson
so you can also link pgtclsh.
1996-11-18Quiet compiler warnings about missing prototypes in Linux's bitops.h.Bryan Henderson
1996-11-18Quiet compiler warnings, ignore the ones we can't.Bryan Henderson
1996-11-18Ignore compiler warnings, because we can't escape "abstract declarator usedBryan Henderson
as declaration".
1996-11-17Renamed file. Restored SLSUFF to .so.Bruce Momjian
1996-11-17Copy needed include files into standard directory.Bruce Momjian
1996-11-17Change SLSUFF from .so to .o as default.Bruce Momjian
1996-11-17New backend directory description file.Bruce Momjian
1996-11-17Fix for -da option of pg_dump.Bruce Momjian
1996-11-17Fix for return code of psql in manual.Bruce Momjian
1996-11-17Fix for error when viewing group access privs.Bruce Momjian
1996-11-17Fix for Alter TABLE add column varchar(). Was causing zero length.Bruce Momjian
1996-11-17Fix syntax errors so it runs without error messages.Bryan Henderson
1996-11-16Remove old GetPGData reference that causes warning.Bryan Henderson
1996-11-16Add #include <sys/types.h> so it works with Ultrix's in.hBryan Henderson
1996-11-16Added documentation on new unique index capability.Bruce Momjian
1996-11-16Added include file needed by memset().Bruce Momjian
1996-11-16Add prototype for new datetime functions.Bruce Momjian
1996-11-15Remove quote removal. Moved to parser.Bruce Momjian
1996-11-15Correct permissions on lo_export(). Open up permissions.Bruce Momjian
1996-11-15Fix quote/doublequote handling.Bruce Momjian
1996-11-15Remove PERFECT_MEMBruce Momjian
Unallocate opaque.
1996-11-15Unallocate opaque.Bruce Momjian
1996-11-15Changed " to '. Removed bug section from psql. added reminder for log callBruce Momjian
in built-in. fixed backslases in source for libpq.
1996-11-15Mulitple inclusion of sys/socket.hMarc G. Fournier
Pointed out by: Erik Bertelsen <erik@sockdev.uni-c.dk>
1996-11-14Features added:Marc G. Fournier
* Wrote max(date) and min(date) aggregates * Wrote operator "-" for date; date - date yields number of days difference * Wrote operator+(date,int) and operator-(date,int); the int is the number of days. Each operator returns a new date. By: Tom Tromey <tromey@creche.cygnus.com>
1996-11-14Bring in Randy's NOROOT patchMarc G. Fournier
1996-11-14Fix a comment...was going to fix the <sys/types.h> problem, butMarc G. Fournier
Randy is submitting a more comprehensive patch :)
1996-11-14Couple of Ultrix4 related patches submited by:Marc G. Fournier
Erik Bertelsen <erik@sockdev.uni-c.dk>
1996-11-14Fix a comment that wasn't commente'd outMarc G. Fournier
Pointed out by: Erik Bertelsen <erik@sockdev.uni-c.dk>
1996-11-14Remove comments psql was putting in output, typo's.Bruce Momjian
psql now returns error from queries and errors files, so ignore return code.
1996-11-14Overhaul MainLoop input processing for quotes, comments, backslashes.Bruce Momjian