Bryan Henderson
e67cc8a346
Fix bug: -D options implies -d option.
30 years ago
Vadim B. Mikheev
8c2f099ab5
Fix memory overhelding while forming index' result:
...
memory allocation for ItemPointerData of heap' tuple is useless
because of FormRetrieveIndexResult makes neccessary palloc.
30 years ago
Vadim B. Mikheev
5d7e44fc8e
Fix memory overhelding while forming index' result:
...
memory allocation for ItemPointerData of heap' tuple is useless
because of FormRetrieveIndexResult makes neccessary palloc.
30 years ago
Vadim B. Mikheev
05b3b8613d
Fix memory overhelding while forming index' result:
...
memory allocation for ItemPointerData of heap' tuple is useless
because of FormRetrieveIndexResult makes neccessary palloc.
30 years ago
Bruce Momjian
58802bf39a
Can't add a keyword without making it a keyword. :-)
...
D'Arcy J.M. Cain | Democracy is three wolves
30 years ago
Bruce Momjian
cd743f8388
Otherwise "gmake install" fails.
...
D'Arcy J.M. Cain | Democracy is three wolves
30 years ago
Bruce Momjian
c4d6bda2c5
There is a bug in aclinsert3 in the code which update the acl arrays.
...
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
30 years ago
Bruce Momjian
8299e75577
following is a little fix for libpq.
...
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 )
30 years ago
Bruce Momjian
6399c74f17
Fix \g filename. Free allocated memory and don't use memory that has
...
been freed.
30 years ago
Bruce Momjian
9d45f22e38
Here is the patch for pg_dump not handling NULL values in 'insert'
...
mode properly. This will apply correctly to 1.09 & 2.0 sources.
From David H. Bennett
30 years ago
Bruce Momjian
bdb25dbad6
Fix for man Makefile. Added 'all'.
30 years ago
Bruce Momjian
9529238d78
Make install change for man files
30 years ago
Bruce Momjian
2abbf392bd
Removed old Assert's used during development.
30 years ago
Bryan Henderson
81f5c669e9
This file has not been part of the regression test for many releases.
30 years ago
Bryan Henderson
13312a007d
The routines in magic.c have moved to the more accessible version.c.
30 years ago
Bryan Henderson
b8eb6400de
Eliminate mk/ directory. The tyranny of the included make file templates is
...
ended!
30 years ago
Bryan Henderson
be421b9b9a
Build man/ instead of ../doc. Man pages have moved there.
30 years ago
Bruce Momjian
c6453ea75f
Added DLSUFFIX to bsdi.
30 years ago
Bruce Momjian
317f375bb2
Rename SLSUFF to DLSUFFIX
30 years ago
Bryan Henderson
4a820de1f2
Include some macros that used to be -D options in Makefile.global.
30 years ago
Bryan Henderson
e2a8163c40
Remove linux define of __USE_POSIX, which doesn't appear to do anything.
30 years ago
Bryan Henderson
b55d49f5fe
Add comments about the diversity of signal functionality. Came from
...
Makefile.global.
30 years ago
Bryan Henderson
87f5fda6b9
Make port-specific link libraries defined for linking backend more global
...
so you can also link pgtclsh.
30 years ago
Bryan Henderson
bd57c3afe5
Quiet compiler warnings about missing prototypes in Linux's bitops.h.
30 years ago
Bryan Henderson
435d4f4a79
Quiet compiler warnings, ignore the ones we can't.
30 years ago
Bryan Henderson
e780f0fef3
Ignore compiler warnings, because we can't escape "abstract declarator used
...
as declaration".
30 years ago
Bruce Momjian
529189f407
Renamed file. Restored SLSUFF to .so.
30 years ago
Bruce Momjian
ce7a3b3a82
Enable manual pages to be installed.
30 years ago
Bruce Momjian
99a4dc0598
Copy needed include files into standard directory.
30 years ago
Bruce Momjian
b715c3ad96
Change SLSUFF from .so to .o as default.
30 years ago
Bruce Momjian
75f58aef7c
New backend directory description file.
30 years ago
Bruce Momjian
ca1a20eba4
Fix for -da option of pg_dump.
30 years ago
Bruce Momjian
cc7f032289
Fix for return code of psql in manual.
30 years ago
Bruce Momjian
003b76f9ac
Fix for error when viewing group access privs.
30 years ago
Bruce Momjian
4b130b2209
Fix for Alter TABLE add column varchar(). Was causing zero length.
30 years ago
Bryan Henderson
620f014621
Fix syntax errors so it runs without error messages.
30 years ago
Bryan Henderson
aef6163388
Remove old GetPGData reference that causes warning.
30 years ago
Bryan Henderson
7bf3bae1a4
Add #include <sys/types.h> so it works with Ultrix's in.h
30 years ago
Bruce Momjian
5dd3c5620c
Added documentation on new unique index capability.
30 years ago
Bruce Momjian
4024d43069
Added include file needed by memset().
30 years ago
Bruce Momjian
b3ce105b31
Add prototype for new datetime functions.
30 years ago
Bruce Momjian
7085aba53c
Remove quote removal. Moved to parser.
30 years ago
Bruce Momjian
36aaf2505d
Correct permissions on lo_export(). Open up permissions.
30 years ago
Bruce Momjian
3f53311088
Fix quote/doublequote handling.
30 years ago
Bruce Momjian
b847d29785
Remove PERFECT_MEM
...
Unallocate opaque.
30 years ago
Bruce Momjian
f8e02c192a
Unallocate opaque.
30 years ago
Bruce Momjian
a180738ddd
Changed " to '. Removed bug section from psql. added reminder for log call
...
in built-in. fixed backslases in source for libpq.
30 years ago
Marc G. Fournier
54c9905d6e
Mulitple inclusion of sys/socket.h
...
Pointed out by: Erik Bertelsen <erik@sockdev.uni-c.dk>
30 years ago
Marc G. Fournier
8abc490181
Features added:
...
* 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>
30 years ago
Marc G. Fournier
eedc75bfe1
Bring in Randy's NOROOT patch
30 years ago