aboutsummaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Collapse)AuthorAge
* FIx confusion over SORT and SORTCLAUSE in node handling.Bruce Momjian1998-04-27
|
* Re-apply Darren's char2-16 removal code.Bruce Momjian1998-04-26
|
* Inline some small functions called for every row.Bruce Momjian1998-04-24
|
* Add hpux patch for cpp.Bruce Momjian1998-04-21
|
* Try to find cpp failure and report it.Bruce Momjian1998-04-20
|
* Update HISTORY/TODO. Disable HAVING.Bruce Momjian1998-04-17
|
* A few minor mods:Marc G. Fournier1998-04-17
| | | | | | | gram.c updated scan.c updated ecpg/Makefile added LDFLAGS configure requires sfio for those systems with it installed...
* Move HAVING function to proper file.Bruce Momjian1998-04-15
|
* Update gram.c.nd *.h files.Bruce Momjian1998-04-14
|
* Cleanup up code.Bruce Momjian1998-04-13
|
* More work in the right direction on linux/alphaMarc G. Fournier1998-04-12
| | | | From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
* linuxalpha patches from Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>Marc G. Fournier1998-04-11
|
* Oops...I used Relation->rd_fd->relname exactly, instead of using the actualMarc G. Fournier1998-04-10
| | | | variable name *blush* *grin*
* Okay, add relation name to the file generating the error...Marc G. Fournier1998-04-10
|
* See if I can determine where the BTP_CHAIN error is coming from...Marc G. Fournier1998-04-10
|
* Prepare the EXTRACT() clause for supporting TIMEZONE_HOURThomas G. Lockhart1998-04-08
| | | | | | | | | and TIMEZONE_MINUTE but don't introduce until v6.4. Fix SET TIMEZONE LOCAL to pass null pointer rather than older "default" string. Fix handling of NULL pointer returns from FOREIGN KEY clauses which are currently ignored. Allow START as a table/column name.
* Temporarily back out fixes for unary minus parsing.Thomas G. Lockhart1998-04-08
| | | | | Will re-introduce for v6.4 but requires fixes for automatic type conversion beforehand.
* Back out char2-char16 removal. Add later.Bruce Momjian1998-04-07
|
* ASSERT fixes.Bruce Momjian1998-04-06
|
* DESTDIR removed, again.Bruce Momjian1998-04-06
|
* Cleanup of compiler warnings.Bruce Momjian1998-04-06
|
* Make DESTDIR consistent, and verious Linux cleanups.Bruce Momjian1998-04-06
|
* Hi,Bruce Momjian1998-04-06
| | | | | | | | | | | | | | | | | | | | | | 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
* Remove GetDatabaseName/Path and use globals. Make consts later.Bruce Momjian1998-04-05
|
* Fix for memory leak.Bruce Momjian1998-04-05
|
* Fix merging pathes of pruned rels ("indices are unused" problem).Vadim B. Mikheev1998-04-02
|
* From: Maurice Gittens <mgittens@david.gits.nl>Marc G. Fournier1998-04-01
| | | | | | | | | After applying the following patch there remain two probable buffer overruns detected by Electric Fence during the regression test. I'll try find out what causes the remain two ones. This patch also corrects a typo in smgr.c.
* remove the call to port-protos.h ...Marc G. Fournier1998-04-01
|
* Small HAVING cleanup.Bruce Momjian1998-03-31
|
* Merge rename name page into alter table. Fix UNION with DISTINCTBruce Momjian1998-03-31
| | | | or ORDER BY bug.
* documentation for HAVING, clean up UNION comment.Bruce Momjian1998-03-30
|
* This simple patch to catalog/pg_type.c fixes a buffer overrun. ItBruce Momjian1998-03-30
| | | | | | | | | | | | | was detected by Electric Fence and triggered by statements like: SELECT * into table t from pg_database; The system would crash on a memmove call in DataFile() with arguments like this: memmove(0x0, 0x0, 0); Maurice Gittens
* The following uuencoded, gzip'd file will ...Bruce Momjian1998-03-30
| | | | | | | | | | | 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
* The buffer overrun while creating sequences turns out to be a readBruce Momjian1998-03-30
| | | | | | | | | access overrun. For the sake of doing things properly here is a patch which fixes it. This patch is for the file backend/commands/sequence.c. Maurice Gittens
* There's a patch attached to fix gcc 2.8.x warnings, except for theBruce Momjian1998-03-30
| | | | | | | | | | | | | | | | | | | | | | | | yyerror ones from bison. It also includes a few 'enhancements' to the C programming style (which are, of course, personal). The other patch removes the compilation of backend/lib/qsort.c, as qsort() is a standard function in stdlib.h and can be used any where else (and it is). It was only used in backend/optimizer/geqo/geqo_pool.c, backend/optimizer/path/predmig.c, and backend/storage/page/bufpage.c > > Some or all of these changes might not be appropriate for v6.3, since we > > are in beta testing and since they do not affect the current functionality. > > For those cases, how about submitting patches based on the final v6.3 > > release? There's more to come. Please review these patches. I ran the regression tests and they only failed where this was expected (random, geo, etc). Cheers, Jeroen
* I started adding the Having Clause and it works quite fine forBruce Momjian1998-03-30
| | | | | | | | | | | | | | | | | | | | | | | | sequential scans! (I think it will also work with hash, index, etc but I did not check it out! I made some High level changes which should work for all access methods, but maybe I'm wrong. Please let me know.) Now it is possible to make queries like: select s.sname, max(p.pid), min(p.pid) from part p, supplier s where s.sid=p.sid group by s.sname having max(pid)=6 and min(pid)=1 or avg(pid)=4; Having does not work yet for queries that contain a subselect statement in the Having clause, I'll try to fix this in the next days. If there are some bugs, please let me know, I'll start to read the mailinglists now! Now here is the patch against the original 6.3 version (no snapshot!!): Stefan
* BETWEEN and LIKE patch from ThomasBruce Momjian1998-03-26
|
* OK...here is a patch that will cause the magnetic disk storageBruce Momjian1998-03-20
| | | | | | | | | | | manager to not try to split files in 2 gig chunks. It will just try to get another block. If applied, everything is just as before. But if LET_OS_MANAGE_FILESIZE is defined, the chaining disappears and the file just keeps on going, and going, and going, til the OS barfs. Darren King
* The real trick is to add -Dalpha to the CFLAGS setting. The changesBruce Momjian1998-03-20
| | | | | | | | | | | | | to main.c are only to add some extra includes to support some code that's suddenly being used. The #define ASSEMBLER is to prevent most of the code of sys/proc.h from being included, as it ends up conflicting with some of the postgresql definitions. This may or may not work on other versions of Digital Unix. Get alpha working. Yea. Dwayne Bailey
* > > I'm using text[] arrays. Some of my array elements have '"'Bruce Momjian1998-03-20
| | | | | | | | > > characters in them. Dumping and reloading using pg_dumpall > > doesn't work with this and dumping the entire array and > > then trying to parse it is hopeless. Doug Gibson
* Allow parsing expressions with ") -" (scan.l, scan.c only).Thomas G. Lockhart1998-03-18
| | | | | | | | | Make "TABLE" optional in "LOCK TABLE" command and "... INTO TABLE..." clause. Explicitly parse CREATE SEQUENCE options to allow a negative integer as an argument; this is an artifact of unary minus handling in scan.l. Add "PASSWORD" as an allowed column identifier. These fixes will require a "make clean install" but not a dump/reload.
* Add checks for UNION target fields, and add optional TABLE to LOCKBruce Momjian1998-03-18
| | | | and SELECT manual pages and psql help.
* Fix for Datasize = 0 error, from Vadim.Bruce Momjian1998-03-16
|
* subselect notes from Vadim.Bruce Momjian1998-03-16
|
* From: hankin <hankin@consultco.com>Marc G. Fournier1998-03-15
| | | | | | | | | | a while back I posted a patch for pg_ident, the patch worked but I didn't diagnose the problem properly. on my compiler(gcc2.7.2) this compiles with no errors... char buf[1000]; if(buf != '\0') { ...but it doesn't compare '\0' with the first char of buf.
* From: t-ishii@sra.co.jpMarc G. Fournier1998-03-15
| | | | | | | 6.3 postmaster is supposed to work with pre 6.3 protocol. This is true for little endian architecture servers. But for big endian machines such as Sparc the backward compatibility function do not work. Attached are patches to fix the problem.
* From: "Thomas G. Lockhart" <lockhart@alumni.caltech.edu>Marc G. Fournier1998-03-15
| | | | | | | | For substr() and substring() on the text data type, the relevant code is in varlena.c. You are right, there is a problem. I have a patch which I will apply to the source tree soon. The copy enclosed below probably does not preserve tabs correctly so cannot be applied directly; the relevant change is simply changing the ">=" to ">"...
* From: t-ishii@sra.co.jpMarc G. Fournier1998-03-15
| | | | | | | | | | | | | | | Included are patches intended for allowing PostgreSQL to handle multi-byte charachter sets such as EUC(Extende Unix Code), Unicode and Mule internal code. With the MB patch you can use multi-byte character sets in regexp and LIKE. The encoding system chosen is determined at the compile time. To enable the MB extension, you need to define a variable "MB" in Makefile.global or in Makefile.custom. For further information please take a look at README.mb under doc directory. (Note that unlike "jp patch" I do not use modified GNU regexp any more. I changed Henry Spencer's regexp coming with PostgreSQL.)
* Remove postgres95.Bruce Momjian1998-03-14
|
* Get the ultrix4 ports back in sync...Marc G. Fournier1998-03-10
|