summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-06-03SET geqo TO 'on' restores _use_geqo_rels_ to GEQO_RELS, notVadim B. Mikheev
to last specified with 'on' #. What is better ?
1997-06-03cc1: warnings being treated as errorsVadim B. Mikheev
remove.c: In function `RemoveAggregate': remove.c:413: warning: unused variable `typename' -> got rid of it.
1997-06-03SET var TO '...'Vadim B. Mikheev
^^ - added
1997-06-03cc1: warnings being treated as errorsVadim B. Mikheev
psql.c: In function `HandleSlashCmds': psql.c:1141: warning: `optarg3' might be used uninitialized in this function psql.c:1157: warning: `optarg3' might be used uninitialized in this function -> char *optarg3 = NULL;
1997-06-03Cleanups.Vadim B. Mikheev
1997-06-03Add \dt and \di to psql help.Bruce Momjian
1997-06-03New description of currval.Vadim B. Mikheev
1997-06-03#define GEQO_RELS 6 (not 7)Vadim B. Mikheev
1997-06-03Fix deleted tuples re-incarnation possible when vacuum transactionVadim B. Mikheev
start time equal to tuple->t_tmax. Privent shrinking if there are tuples modifyed by running transactions (it concerns system relations only, currently).
1997-06-02*** empty log message ***Edmund Mergl
1997-06-02Update man and psqlHelp for new SET GEQO=# option.Bruce Momjian
1997-06-02Allow for EOF or \0 as input() return from lex.Bruce Momjian
1997-06-02Oracle like currval behaviour.Vadim B. Mikheev
1997-06-02#define GEQO_RELS 7Vadim B. Mikheev
moved from geqo.h to internal.h.
1997-06-02Use GEQO if _use_geqo_ is TRUE and # of relations is >= _use_geqo_rels_Vadim B. Mikheev
(both are settable via SET geqo TO ...).
1997-06-02SET var TO 'a=b'Vadim B. Mikheev
^^ is supported by get_token now. (SET geqo TO 'on=XXX' works now).
1997-06-02From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] patch for a memory leak Well...I screwed up and posted the wrong patch for psql originally.. The patch for that patch wposted below will fix it..
1997-06-02From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] Another destroydb patch This is a patch to my previous destroydb patch cause some people wanted slightly different behavior. After this patch is applied, destroydb will destroy a database as usual, but if added -i flag (which could be aliased like rm -i) would ask for confirmation.
1997-06-02From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] pg_dump memory leak patch This patch fixes a HUGE memory leak problem in pg_dump. Pretty much anything that was allocated was never freed and Purify reported about 40% possible memory leak and 6% actual leak. I added functions to clear out all the allocated structures. After the patch Purify returns 0 for number of bytes leaked...
1997-06-01Ordering of libraries changed so that -lbsd is *after* -lmMarc G. Fournier
Fixes a problem Darren reports with AIX, and doesn't seem to break either FreeBSD or Linux(David?)...
1997-06-01From: Darren King <aixssd!darrenk@abs.net>Marc G. Fournier
Subject: [PATCHES] psql - \dt,\di commands. I sent this a couple of months ago in re a request by Maxim Kozin, but I had the patch reversed, creating some confusion over applying it. Here's a more complete version. Adds \dt to list only tables/views and \di to list only indicies. \d will still work as before.
1997-06-01From: Phil Nelson <phil@cs.wwu.edu>Marc G. Fournier
Subject: [PATCHES] Support for NetBSD/sparc The following is a patch to allow BSD44_derived to support NetBSD/sparc.
1997-06-01From: Darren King <aixssd!darrenk@abs.net>Marc G. Fournier
Subject: [PATCHES] aix.h needs POSIX...
1997-06-01From: Robert Bruccoleri <bruc@bms.com>Marc G. Fournier
One more Irix related patch for Dynamic Linking
1997-06-01From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] destroydb patch I am including a patch for destroydb to ask for confirmation before deleting databases (after I accidentally deleted mine)...destroydb -y would force delete without any confirmation.
1997-06-01From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] memory leak patches in libpq and psql A couple of small memory leak patches (detected with Purify) primarily in libpq. * Fixed (NULL) border problem in psql (run psql, do \m, then select something from a table...row separators will be nulls) * Fixed memory leak with the abovementioned border not being freed properly. * Fixed memory leak in freePGconn() not freeing conn->port * Fixed up PQclear() to free parts of PGresult only if these parts are not null. * Fixed a decent memory leak that occured after executing every command in psql. PGresult *results was not freed most of the time. There is still a leak being detected (2 bytes) in readline functions, but I think this is old readline library. I will install new one and test it.
1997-06-01Added \n to error message.Bruce Momjian
1997-06-01Add R_PLANS to psql help, and SET cleanup.Bruce Momjian
1997-06-01DROP agg psql help change from Darren.Bruce Momjian
1997-06-01SET R_PLANS added to manual page.Bruce Momjian
1997-06-01Put back old lines.Bruce Momjian
1997-06-01Add bsdi 3.0 to configure.Bruce Momjian
1997-06-01Cleanup for AIX from Darren.Bruce Momjian
1997-06-01Escape newline in select output, from A. Duursma.Bruce Momjian
1997-06-01Enable GEQO for more than six tables, from Martin.Bruce Momjian
1997-06-01Changed 1943 to 1947 to fix, other cleanups.Bruce Momjian
1997-05-31Fix for SELECT * INTO TABLE for char(), varchar() fields.Bruce Momjian
1997-05-31If there is no table in RangeTable for colname thenVadim B. Mikheev
elog (WARN, "attribute %s not found", colname);
1997-05-31If we have to split leaf page in the chain of duplicatesVadim B. Mikheev
then we try to look at our right sibling first, but not farther, as it was in yesterday fix.
1997-05-30Added: new BTP_CHAIN flag (if hikey == firstkey then it's notVadim B. Mikheev
last page in chain of duplicates).
1997-05-30Fix duplicates handling.Vadim B. Mikheev
1997-05-30Clean up support for USE_POSIX_TIME, ! HAVE_INT_TIMEZONE machines.Thomas G. Lockhart
Remove references to modf() which is buggy on some platforms (Sparc/Linux).
1997-05-26Ensure double alignment for time and arrays of circles.Thomas G. Lockhart
1997-05-26From: David Friend <dfriend@atlsci.atlsci.com>Marc G. Fournier
Subject: [PATCHES] pqcomprim.c patch This is the patch by Robert Bruccoleri to fix the endian problem. (Actually, it's the reverse of his patch. He must have gotten the order wrong.)
1997-05-25-m <arg> -M weren't setup properly in getopts()...Marc G. Fournier
These are undocumented in the man pages though...should they be removed? Reported by: "A. Duursma" <it@portsite.nl>
1997-05-24Fix core dump on \c.Bruce Momjian
1997-05-24Fix \c option after breaking it.Bruce Momjian
1997-05-23Clean up redundant tests for valid pointers in geometric types.Thomas G. Lockhart
Fix up decoder field masks for timespan and reltime.
1997-05-23Enable new date and time definitions to allow Solaris and Irix -O2 compilation.Thomas G. Lockhart
Move date and time field type labels to less than 32 to allow use as masks.
1997-05-23AllocateFile():Vadim B. Mikheev
fdleft = pg_nofile() - allocatedFiles - nfile; looks more realistic, but too noisy - fdleft = pg_nofile() - allocatedFiles; restored.