summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix for SELECT INTO TABLE for varchar().Bruce Momjian1998-01-195-5/+67
|
* From: "Michael J. Maravillo" <mmj@philonline.com>Marc G. Fournier1998-01-175-8/+12
| | | | | | This patch makes it possible to do a "real" make distclean (back to its fresh state) on the distribution after compilation, regression testing, etc.
* From: "Michael J. Maravillo" <mmj@philonline.com>Marc G. Fournier1998-01-171-116/+0
| | | | | Also, I think the existence of pgsql/src/bin/initlocation/initlocation isn't necessary as it's generated by Makefile from initlocation.sh.
* Must commit configure changes after patch to configure.inMarc G. Fournier1998-01-171-209/+209
|
* From: "Billy G. Allie" <Bill.Allie@mug.org>Marc G. Fournier1998-01-179-46/+70
| | | | | | | | | | | | | | | | | | | The attached patches will allow postgreSQL to compile successfully on SCO UNIXWARE 2.1.x. The patches fix the following problems: 1. Configure did not properly recognize the UNIXWARE system as needing the univel port. It used the sys4 port. 2. Configure did not properly process the CC flag in the template file. 3. There was no working test and set locking implementation for the native UNIXWARE compiler. 4. The test and set locking used for Intel X86 that was selected by defining NEED_I386_TAS_ASM could fail in a multi-processor environment. 5. The makefiles for libpq and libpgtcl did not make a shared library for the univel port.
* From: Jan Wilhelm <Jan_Wilhelm@Physik.TU-Muenchen.DE>Marc G. Fournier1998-01-171-2/+2
| | | | | a) psql dumps core when using -a password and PGUSER is set but PGPASSWORD not set.
* Gram.y cleanup.Bruce Momjian1998-01-171-10/+65
|
* Creates the SubLink structure, and the Query->hasSubLink field,Bruce Momjian1998-01-1710-113/+205
| | | | | | | | with supporting code. Creates SubLink node in gram.y. psql.c patch for newatttypmod field.
* New pg_attribute.atttypmod for type-specific information likeBruce Momjian1998-01-1627-467/+339
| | | | | | | | | | | varchar length. Cleans up code so attlen is always length. Removed varchar() hack added earlier. Will fix bug in selecting varchar() fields, and varchar() can be variable length.
* Temporary varchar patch.Bruce Momjian1998-01-161-1/+27
|
* Fix for aggreg problem and fmgr.c compile problems.Bruce Momjian1998-01-152-4/+5
|
* Fix:Marc G. Fournier1998-01-156-10/+28
| | | | | | | | | | nodeAgg.c: WARN -> NOTICE for elog parse_oper.c: was created after patch for fmgr_info, so function call wrong scan.c: regenerated for i386_solaris using flex 2.5.4 gethostname.c: required prototype for gethostname() function config.h.in: create prototype for isinfo() function isinf.c: "fake" isinf() under i386_solaris using fpclass() call...
* Thank god for searchable mail archives.PostgreSQL Daemon1998-01-1537-402/+344
| | | | | | | | | Patch by: wieck@sapserv.debis.de (Jan Wieck) One of the design rules of PostgreSQL is extensibility. And to follow this rule means (at least for me) that there should not only be a builtin PL. Instead I would prefer a defined interface for PL implemetations.
* Remove Query->qry_aggs and qry_numaggs and replace with Query->hasAggs.Bruce Momjian1998-01-1520-272/+173
| | | | | | | | | Pass List* of Aggregs into executor, and create needed array there. No longer need to double-processs Aggregs with second copy in Query. Fix crash when doing: select sum(x+1) from test where 1 > 0;
* Function cleanupo for List* when it should be Node *.Bruce Momjian1998-01-141-25/+26
|
* Cleanup of prototypes. FIx for PQtrace start/stop several times.Bruce Momjian1998-01-145-64/+34
|
* this should pretty much clean up the i386_solaris port, with regressionMarc G. Fournier1998-01-134-62/+2859
| | | | tests running "as expected"...
* Various cleanups for the i386_solaris environmentMarc G. Fournier1998-01-133-24/+17
|
* isinf() doesn't exist under i386_solaris, so code it such thatMarc G. Fournier1998-01-133-46/+101
| | | | it is (!isnan() && !finite()) instead
* Oops, should be 'tas.o', not 'tas.s'Marc G. Fournier1998-01-132-2/+2
|
* MIssed a semi-colon in AC_LINK_FILES for i386_solaris port...Marc G. Fournier1998-01-132-3/+3
|
* Further clean up "auto-configuration" for portsMarc G. Fournier1998-01-133-212/+221
|
* Work on getting the i386_solaris compile to work ...Marc G. Fournier1998-01-132-34/+0
|
* Remove unused "option" from PQconnectdb().Vadim B. Mikheev1998-01-131-2/+1
|
* Remove PageSizeIsValid from BufferGetPageSize.Vadim B. Mikheev1998-01-131-4/+2
|
* extern char* crypt_getpwdreloadfilename(void);Vadim B. Mikheev1998-01-131-1/+1
| | | | ^^^^
* Add a 'dummy' file for i386_solaris.c for configureMarc G. Fournier1998-01-131-0/+4
|
* Updated Regression outputMarc G. Fournier1998-01-131-1224/+1529
|
* Have clean clean out the test directory also, as well as the Makefiles inMarc G. Fournier1998-01-131-1/+4
| | | | interfaces/{libpq,libpgtcl}
* A minor patch for HP/UX 10 vs 9Marc G. Fournier1998-01-131-1/+6
|
* From: Goran Thyni <goran@bildbasen.se>Marc G. Fournier1998-01-131-41/+18
| | | | | | | | | | | OK, here comes a patch, DBD::Pg (and possibly other 3rd party clients) can connect to unix sockets. Patch is against current source tree. Background: libpq set some policy for client, which it should not IMHO. It prevent some 3rd party clients to connect with unix domain sockets etc.
* One more src/interfaces/libpq/Makefile problem: there's an explicitMarc G. Fournier1998-01-131-2/+2
| | | | | | | reference to the name of the shared library, instead of dereferencing the definition from the top of the file. From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
* Various fixes resulting from removing the PORTNAME definesMarc G. Fournier1998-01-134-7/+11
| | | | From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
* Some *very* major changes by darrenk@insightdist.com (Darren King)Marc G. Fournier1998-01-1315-161/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ========================================== 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.) ==========================================
* > It seems there is a mistake in substr function:Marc G. Fournier1998-01-131-2/+2
| | | | | | | | | | | | | | | > then you try get substr, which consists only of last char in string > you get all string > > For example: > userbase=> select substr('123456', 6,1) ; > substr > ------ > 123456 > (1 row) > From Edmund Mergl <E.Mergl@bawue.de>
* Should fix it all, Peter?Marc G. Fournier1998-01-132-633/+0
|
* Oops...missed over half the patch :(Marc G. Fournier1998-01-1318-1/+3019
|
* Upgrade to 0.76Marc G. Fournier1998-01-122-1032/+1755
|
* Html backend_dir cleanupBruce Momjian1998-01-121-0/+5
|
* Manual page dash cleanup.Bruce Momjian1998-01-1171-146/+146
|
* Fix from Peter for BLOBsMarc G. Fournier1998-01-111-2/+2
|
* Peter's Mega-Patch for JDBC...Marc G. Fournier1998-01-1113-306/+1276
| | | | see README_6.3 for list of changes
* Fix SCO and change index name.Bruce Momjian1998-01-112-6/+11
|
* Clean up of copyfuncs.Bruce Momjian1998-01-114-88/+55
|
* psql help cleanup.Bruce Momjian1998-01-112-6/+7
|
* Update psql help.Bruce Momjian1998-01-111-23/+112
|
* Add UNION, GROUP, DISTINCT to INSERT.Bruce Momjian1998-01-114-10/+46
|
* Fix up for recent changes in elog error messages.Thomas G. Lockhart1998-01-103-13/+9
| | | | | Some behavior of the triggers test cases changed for the least week or two; now back to the usual expected behavior.
* Fix CLUSTER.Bruce Momjian1998-01-103-2/+10
|
* Bye CursorStmt, now use SelectStmt.Bruce Momjian1998-01-104-69/+26
|