summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-04-21Fix for -Wno-errorVadim B. Mikheev
1997-04-20Here is the Mismatched input/output patch for tintervals as reported overMarc G. Fournier
the last week on Hackers...(A coulpe of clippings of the final verdict are included below + the diff). From: Wayde Nie <niew@phoenix.cis.mcmaster.ca>
1997-04-18Add a --with-compiler switch that allows someone to specify:Marc G. Fournier
--with-compiler=xlc Requested by: Darren King <aixssd!darrenk@abs.net>
1997-04-18From: adrian@waltham.harvard.netMarc G. Fournier
Subject: [HACKERS] Another patch to configure.in I heard very little in objections/approvals to defaulting some of the parameters to configure. Enclosed is a patch to configure.in which removes the questions for PGPORT USE_LOCALE NOHBA By default (i.e. assuming you don't put anything extra in the configure command line), it assumes PGPORT=5432, USE_LOCAL=no and NOHBA=no (i.e. HBA is turned on) --with-pgport=PGPORT_NO Over-rides the PGPORT value --enable-locale enables USE_LOCALE --disable-hba disables HBA Just for completeness: --prefix=BASEDIR Defaults to /usr/local/pgsql --with-template=TEMPLATE Defaults to asking you
1997-04-18Fix for -Wno-errorVadim B. Mikheev
1997-04-18CommitInfoNeedsSave[buffer - 1] = 0Vadim B. Mikheev
added to WriteBuffer(), FlushBuffer(), WriteNoReleaseBuffer().
1997-04-18#ifdef BTREE_BUILD_STATS enables to get executor stats for btreeVadim B. Mikheev
building.
1997-04-181. DeclarationVadim B. Mikheev
static const char *num_word(Cash value); moved to cash.c. 2. 'extern ' added to funcs prototypes.
1997-04-18DeclarationVadim B. Mikheev
static const char *num_word(Cash value); moved here from cash.h
1997-04-18PrintBufferUsage() changed to report about shared, local and directVadim B. Mikheev
blocks transfferes.
1997-04-18Fix bttextcmp() to use unsigned char*.Vadim B. Mikheev
#ifdef USE_LOCALE added.
1997-04-17From: Raymond Toy <toy@rtp.ericsson.se>Marc G. Fournier
Subject: [PATCHES] 970417: some large object patches Two patches here, made against 970417. Both have to do with large objects: 1. lobjfuncs was not initialized in PQconnectdb. This causes failure later if large objects are used. (Someone already caught this error in PQsetdb.) 2. Postgres functions lo_import and lo_export sometimes produce garbage for the file names because the filename strings aren't always terminated by \0. (VARDATA isn't necessarily null terminated.)
1997-04-17From: Raymond Toy <toy@rtp.ericsson.se>Marc G. Fournier
Subject: [PATCHES] 970417: two more patches for large objects Here are two more patches: 1. pg_getint doesn't properly set the status flag when calling pqGetShort or pqGetLong. This is required when accessing large objects via libpq. This, combined with problem 1 above causes postgres to crash when postgres tries to print out the message that the status was not good. 2. ExceptionalCondition crashes when called with detail = NULL. This patch prevents dereferencing the NULL.
1997-04-17From: "Martin J. Laubach" <mjl@CSlab.tuwien.ac.at>Marc G. Fournier
Subject: [HACKERS] Patch: set date to euro/us postgres/iso/sql Here a patch that implements a SET date for use by the datetime stuff. The syntax is SET date TO 'val[,val,...]' where val is us (us dates), euro (european dates), postgres, iso or sql. Thomas is working on the integration in his datetime module. I just needed to get the patch out before it went stale :)
1997-04-17Some slight changes to the Wisconsin Benchmark tests since postgres requiresMarc G. Fournier
a -D<datadir> option
1997-04-17The patch fixes a rare bug that may occur when one tries to vacuum a singleVadim B. Mikheev
table. The table name is de-allocated by the CommitTransactionCommand() in vc_init() before it is copied in VacRel.data and sometimes this causes a SIGSEGV. My patch simply moves the strcpy before vc_init. Submitted by Massimo Dal Zotto <dz@cs.unitn.it>.
1997-04-16Fix a problem with Linux where yacc is *really* bison -yMarc G. Fournier
1997-04-16connectDB(): setsockopt (..., TCP_NODELAY, ...) added.Vadim B. Mikheev
1997-04-16StreamConnection(): setsockopt (..., TCP_NODELAY, ...) added.Vadim B. Mikheev
1997-04-161. BTREE_VERSION_1: using bti_itup->t_tid as unique identifier for a givenVadim B. Mikheev
index tuple (logical position within A LEVEL). bti_oid & bti_dummy taken off from BTItemData. 2. Fix for multi-column indices (nbtsearch.c): _bt_binsrch() - for searches on internal pages having keysize < number of attrs we point at the last item < the scankey, not at the first item = the scankey; _bt_moveright() - if keysize < number of attrs we compare scankey with _last_ item on current page to decide should we move right or not.
1997-04-16BTREE_VERSION_1: using bti_itup->t_tid as unique identifier for a givenVadim B. Mikheev
index tuple (logical position within A LEVEL). bti_oid & bti_dummy taken off from BTItemData.
1997-04-15A couple of cleanups from Scott Harrison <Scott_Harrison@next.com>Marc G. Fournier
1997-04-15Oops, don't forget to remove the CASSERT=true lineMarc G. Fournier
1997-04-15Have CASSERT enabled/disabled via configure, and passed through config.hMarc G. Fournier
instead of as a -D
1997-04-15Patch for Solaris 2.5 from: adrian@waltham.harvard.netMarc G. Fournier
1997-04-15Various minor HP related patches from:Marc G. Fournier
Morten Kjeldgaard <mok@monster.kemi.aau.dk>
1997-04-15A small fix, where default: condition in case had not 'break;'...not required,Marc G. Fournier
but, IMHO, cleaner
1997-04-15From: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>Marc G. Fournier
Subject: [HACKERS] Money integration patches Here are patches to integrate the money data type. I have included some math and aggregate functions and have made the locale support optional by #ifdef USE_LOCALE bracketing of functions. Modules affected are: builtins.h.patch cash.c.patch cash.h.patch main.c.patch pg_aggregate.h.patch pg_operator.h.patch pg_proc.h.patch pg_type.h.patch I changed the data type to be pass-by-reference rather than by-value to pave the way for a larger internal representation (64-bit ints?). Also, I changed the tabbing of cash.c and cash.h to match most of the other Postgres source code files (4 space indent, 8 spaces == 1 tab). The locale stuff should be tested under another convention (Russian?) but I don't know what the correct results should be so perhaps someone else can give them a try. Will update docs and regression tests in the next few days.
1997-04-152. The file /usr/local/pgsql/src/backend/lipq/pgcomprim.c has twoMarc G. Fournier
invalid macro definitions, the compiler complains about: "pqcomprim.c", line 48.9: 1506-275 (S) Unexpected text ';' ignored. "pqcomprim.c", line 61.9: 1506-275 (S) Unexpected text ';' ignored. The ';' terminating the macro definition ntoh_s(n) on line 27 and ntoh_l(n) on line 28 should be removed. Pointed out by: Olaf Mittelstaedt <MSTAEDT@va-sigi.va.fh-ulm.de>
1997-04-15Fix up the -Wno-error problem for non-gcc compilersMarc G. Fournier
Pointed out by many many ppl
1997-04-13Add ccsym to tools to determine OS/compiler specific symbolsMarc G. Fournier
Change BSD44_derived to __FreeBSD__ in numutils.c (need to know what NetBSD is referred to as...someone?)
1997-04-12Fixes for [] escaping pointed out by AdrianMarc G. Fournier
1997-04-12scripts required by configure to bypass its inabilty to use []'s inside ofMarc G. Fournier
configure ([] have special means to m4 *sigh*)
1997-04-12Make sure that Makefile.${PORTNAME} is link'd and that teh port/*.hMarc G. Fournier
file that has moved to include is also link'd properly
1997-04-12Remove port specific Makefile 'targets' (ie. shared libraries) fromMarc G. Fournier
Makefile.global and move them to seperate 'include' makefiles Over time, should become even more port specific: ie. Makefile.BSD44_derived should be broken down into netbsd/freebsd specific ports
1997-04-12More more of the include files under the include directoryMarc G. Fournier
1997-04-12remove the port related .h files from the top level directory.Marc G. Fournier
Moved to include/port
1997-04-12Fix detection of install vs installbsdMarc G. Fournier
Submitted by: adrian@waltham.harvard.net
1997-04-12Make sure postgres.h is included before we start checking #ifdef's for otherMarc G. Fournier
header files. Pointed out by: Edmund Mergl <E.Mergl@bawue.de>
1997-04-12Get rid of the .sql files out of the MakefileMarc G. Fournier
Pointed out by: afc@teri.superlink.net
1997-04-12modifications to pg_dump towards supporting dumping of ACLs (doesn't work yet!)Marc G. Fournier
modification to c.h so that bool isn't typedef'd under __cplusplus
1997-04-11Change BACKEND to CFLAGSMarc G. Fournier
1997-04-10Finish removing the TEST_MAIN stuff, which was mean for standaloneMarc G. Fournier
testing
1997-04-10Fix #include "cash.h" to be #include <utils/cash.h>Marc G. Fournier
Remove the TEST_MAIN stuff at the top...
1997-04-10Update man page, listing new \z valueMarc G. Fournier
1997-04-10Add a \z command to psql that lists off grant/revoke permissionsMarc G. Fournier
- if someone can pick a better \? for this, plesae let me know...all the good ones seem taken :(
1997-04-10Copy indexkeys in _copyIndexPath.Vadim B. Mikheev
1997-04-09Much improved configure that integrates the build script right into itMarc G. Fournier
Submitted by: adrian@waltham.harvard.net
1997-04-09remove the old regression test files. have copies saved in my directory here,Marc G. Fournier
but it gets rid of the temptation to modify the old source files :)
1997-04-09Add in D'Arcy's cash codeMarc G. Fournier
pg_proc.h still needs modifying, but this gets it in there so that we can get around any compiler bugs. Will try and get the pg_proc.h entries done up later tonight...