summaryrefslogtreecommitdiff
path: root/src/backend/tcop
AgeCommit message (Collapse)Author
1998-04-07Back out char2-char16 removal. Add later.Bruce Momjian
1998-04-06Hi,Bruce Momjian
Attached you'll find a (big) patch that fixes make dep and make depend in all Makefiles where I found it to be appropriate. It also removes the dependency in Makefile.global for NAMEDATALEN and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh a little smarter. This no longer requires initdb.sh that is turned into initdb with a sed script when installing Postgres, hence initdb.sh should be renamed to initdb (after the patch has been applied :-) ) This patch is against the 6.3 sources, as it took a while to complete. Please review and apply, Cheers, Jeroen van Vianen
1998-03-30The following uuencoded, gzip'd file will ...Bruce Momjian
1. Remove the char2, char4, char8 and char16 types from postgresql 2. Change references of char16 to name in the regression tests. 3. Rename the char16.sql regression test to name.sql. 4. Modify the regression test scripts and outputs to match up. Might require new regression.{SYSTEM} files... Darren King
1998-02-26pgindent run before 6.3 release, with Thomas' requested changes.Bruce Momjian
1998-02-24From: "Denis V. Dmitrienko" <denis@null.net>Marc G. Fournier
What it does: It solves stupid problem with cyrillic charsets IP-based on-fly recoding. take a look at /data/charset.conf for details. You can use any tables for any charset. Tables are from Russian Apache project. Tables in this patch contains also Ukrainian characters. Then run ./configure --enable-recode
1998-02-13EState->->es_param_exec_vals = NULL; in CreateExecutorState().Vadim B. Mikheev
1998-02-02#if aix changed to #if HAVE_SYS_SELECT_HMarc G. Fournier
1998-02-01AIX patch from Darren King and Univel patch from Billy Allie, mostlyBruce Momjian
related to grammar and parser issues, with one postmaster fix.
1998-01-26From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
I've completed the patch to fix the protocol and authentication issues I was discussing a couple of weeks ago. The particular changes are: - the protocol has a version number - network byte order is used throughout - the pg_hba.conf file is used to specify what method is used to authenticate a frontend (either password, ident, trust, reject, krb4 or krb5) - support for multiplexed backends is removed - appropriate changes to man pages - the -a switch to many programs to specify an authentication service no longer has any effect - the libpq.so version number has changed to 1.1 The new backend still supports the old protocol so old interfaces won't break.
1998-01-25getpid/pid cleanupBruce Momjian
1998-01-13Some *very* major changes by darrenk@insightdist.com (Darren King)Marc G. Fournier
========================================== What follows is a set of diffs that cleans up the usage of BLCKSZ. As a side effect, the person compiling the code can change the value of BLCKSZ _at_their_own_risk_. By that, I mean that I've tried it here at 4096 and 16384 with no ill-effects. A value of 4096 _shouldn't_ affect much as far as the kernel/file system goes, but making it bigger than 8192 can have severe consequences if you don't know what you're doing. 16394 worked for me, _BUT_ when I went to 32768 and did an initdb, the SCSI driver broke and the partition that I was running under went to hell in a hand basket. Had to reboot and do a good bit of fsck'ing to fix things up. The patch can be safely applied though. Just leave BLCKSZ = 8192 and everything is as before. It basically only cleans up all of the references to BLCKSZ in the code. If this patch is applied, a comment in the config.h file though above the BLCKSZ define with warning about monkeying around with it would be a good idea. Darren darrenk@insightdist.com (Also cleans up some of the #includes in files referencing BLCKSZ.) ==========================================
1998-01-11Fix from Peter for BLOBsMarc G. Fournier
1998-01-09Yohoo UNIONS of VIEWS.Bruce Momjian
1998-01-07Goodbye ABORT. Hello ERROR for all errors.Bruce Momjian
1998-01-05Move variable.c to commands/ and aclchk.c to catalog/.Bruce Momjian
1998-01-05Change some ABORTS to ERROR. Add line number when COPY Failure.Bruce Momjian
1998-01-05Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian
1998-01-01Coerce a function argument to avoid compiler warning.Thomas G. Lockhart
1997-12-20Major cleanout of PORTNAME variables from Makefiles...bound to screw upMarc G. Fournier
some of the ports...
1997-12-19More cleanups. I can now compile without PORTNAME being defined nMarc G. Fournier
Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :)
1997-12-16Use environment variable PGDATESTYLE on backend startup to initializeThomas G. Lockhart
date/time formats and conventions.
1997-12-11Rename pg_plan and pg_eval to be more meaningful.Bruce Momjian
1997-12-06Add VARHDRSZ where needed. Many places just used 4.Bruce Momjian
1997-12-04Add 'GERMAN' option to DateStyle.Thomas G. Lockhart
1997-12-04From: todd brandys <brandys@eng3.hep.uiuc.edu>Marc G. Fournier
An extension to the code to allow for a pg_password authentication database that is *seperate* from the system password file
1997-11-27Prevent flushing from packets, by Massimo.Bruce Momjian
1997-11-25Break parser functions into smaller files, group together.Bruce Momjian
1997-11-24Move dbcommands.c to commands/. It should not be in the parser directory.Bruce Momjian
1997-11-24Remove tqual.h includes not needed.Bruce Momjian
1997-11-21More archive cleanup.Bruce Momjian
1997-11-21Remove archive stuff.Bruce Momjian
1997-11-20Remove all time travel stuff. Small parser cleanup.Bruce Momjian
1997-11-14Reformat parser table (cosmetic only).Thomas G. Lockhart
1997-11-10Do a more complete job of supporting time zone information.Thomas G. Lockhart
Try to save pre-existing TZ environment variable if possible. Includes code from Keith Parks.
1997-11-10Change quickdie elog notice to a single message.Thomas G. Lockhart
Clean up FloatExceptionHandler elog message source code.
1997-11-09From: Bryan Henderson <bryanh@giraffe.netgate.net>Marc G. Fournier
My analysis of the formerly mentioned IPC reinitialization problem was hampered by an imprecise error message. I have rewritten it so it is clearer and more accurate.
1997-11-07Add Unix domain socket support, from Goran Thyni, goran@bildbasen.seBruce Momjian
1997-11-07Enable SET value = DEFAULT by passing null parameter to parsers.Thomas G. Lockhart
Enable SET TIME ZONE using TZ environment variable.
1997-11-07Support alternate database locations.Thomas G. Lockhart
1997-11-02Good Bye, Time Travel!Vadim B. Mikheev
1997-10-30Add initial backend support for SET/SHOW/RESET TIME ZONE.Thomas G. Lockhart
Uses TZ environment variable. Needs additional schemes for brain-dead SQL92 time offsets.
1997-10-28Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).Vadim B. Mikheev
1997-10-25Rename "TYPE" parser keyword token from P_TYPE to TYPE_P to conformThomas G. Lockhart
to changes in parser.
1997-10-25Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian
1997-10-24Fix alignment of source.Bruce Momjian
1997-09-29MOVE implementation.Vadim B. Mikheev
1997-09-18Inline memset() as MemSet().Bruce Momjian
1997-09-18No more SortTuplesInTree...Vadim B. Mikheev
1997-09-18Allow set max number of tuples in leftist tree for sortsVadim B. Mikheev
(-S memory,tuples)
1997-09-15-S need in optarg...Vadim B. Mikheev