summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Okay, revert back to non-REVOKED...happy now? :)Marc G. Fournier1998-02-201-13/+1
|
* From: Andreas.Zeugswetter@telecom.atMarc G. Fournier1998-02-191-1/+13
| | | | Improved fix to pg_user/passwd problem...using rewrite rules
* Password fix. Now people have to do the REVOKE themselves.Bruce Momjian1998-02-194-10/+40
|
* oops, missed one...Marc G. Fournier1998-02-191-1/+3
|
* Makefile required some cleaning up for install and makeMarc G. Fournier1998-02-191-2/+2
|
* Don't make shared libraries for i386_solaris yet...it doesn't workMarc G. Fournier1998-02-191-6/+6
|
* Updated from 0.61->0.76Marc G. Fournier1998-02-191-4/+13
|
* FIFO lock wait queue, with readers grouped together.Bruce Momjian1998-02-191-12/+34
|
* Various minor modes for i386_solarisMarc G. Fournier1998-02-193-3/+4
|
* Check for <netinet/in.h>, required by DG/uxMarc G. Fournier1998-02-192-4/+4
|
* From: Michael Meskes <meskes@topsystem.de>Marc G. Fournier1998-02-1911-51/+242
| | | | | Here's my next patch. this one should fix some more bugs. ecpg now fully understands the whenever statement.
* Fix for InitPlan-s: have to copy subselect' result tuple.Vadim B. Mikheev1998-02-191-0/+12
|
* Already moved to the appropriate documentation directoriesMarc G. Fournier1998-02-194-5305/+0
|
* Update FAQ's for release.Bruce Momjian1998-02-181-0/+140
|
* Fix -t for pg_dump when table is uppercase.Bruce Momjian1998-02-181-4/+12
|
* Restore 6.2.1 outputVadim B. Mikheev1998-02-181-3/+5
|
* GroupState changed.Vadim B. Mikheev1998-02-181-4/+4
|
* New nodeGroup.c code uses own copy of first tuple in a group.Vadim B. Mikheev1998-02-182-88/+66
| | | | Free memory after comparison in nodeUnique.c
* Start shipping gram.y products gram.c and parse.h to avoid having to buildThomas G. Lockhart1998-02-181-2/+4
| | | | | them from scratch. gram.y has now grown so that some non-bison yaccs (including FreeBSDs) run out of room and quit.
* Add new subselect test.Thomas G. Lockhart1998-02-183-0/+214
|
* New table from new subselect test.Thomas G. Lockhart1998-02-181-1/+2
|
* Include products of gram.y to allow systems without bison to build Postgres.Thomas G. Lockhart1998-02-182-0/+10206
| | | | The parser recently grew too big for some yaccs, including FreeBSD.
* Allow LIKE expression in constraint clause.Thomas G. Lockhart1998-02-181-1/+5
| | | | Allow USER and VALID as column names and identifiers.
* Fix parsing for <identifier>-<number> which was mis-identified as a unaryThomas G. Lockhart1998-02-182-179/+229
| | | | minus. Example is SELECT f1-2 FROM INT4_TBL;
* Fix from Vadim for simple-minded case SELECT 1 WHERE 1 IN (SELECT 1)Thomas G. Lockhart1998-02-181-2/+3
| | | | used in regression tests. No longer core dumps.
* Remove inclusion of the doc make. Looks like all of the man pages areThomas G. Lockhart1998-02-181-1/+1
| | | | in the usual man page source directory anyway. Source tree now builds.
* Cancel last version which introduced unintended flagsThomas G. Lockhart1998-02-181-1/+0
| | | | for linux-alpha support.
* Fix useor for (a,b...) Op ANY/ALLVadim B. Mikheev1998-02-181-3/+9
|
* I'm getting a SEGV error when testing ecpg using the perftest,orMarc G. Fournier1998-02-181-1/+1
| | | | | | | | | any other, example program. I have tracked this down to a call to PQfinish() in ECPGfinish() that occurs before any connection is established. From: Keith Parks <emkxp01@mtcc.demon.co.uk>
* Update the preprocessor codeMarc G. Fournier1998-02-184-35/+107
| | | | From: Michael Meskes <meskes@topsystem.de>
* Check for and include <getopt.h>Marc G. Fournier1998-02-183-2/+9
|
* Just another missing dummy fileMarc G. Fournier1998-02-171-0/+4
|
* 2. IRIX has both HAVE_FPCLASS and HAVE_FP_CLASS, therefore, inMarc G. Fournier1998-02-171-7/+8
| | | | | | | | backend/port/isinf.c it tries to compile two versions of isinf(). From: Andrew Martin <martin@biochemistry.ucl.ac.uk>
* Major update of ecpg preprocessorMarc G. Fournier1998-02-1713-254/+379
| | | | From: Michael Meskes <meskes@topsystem.de>
* Totally forgot to add these files...Marc G. Fournier1998-02-174-0/+645
|
* The problem is that $ac_cv_prog_gcc is empty, instead of 'no' orMarc G. Fournier1998-02-172-3/+1
| | | | | | | | whatsoever. The patch is not a solution, because configure is generated from configure.in, and I don't know how to patch it to get a working 'configure'. From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>
* Remove all backend/port/${PORTNAME} references from template files, sinceMarc G. Fournier1998-02-166-6/+6
| | | | they don't exist anymore
* From: Brian E Gallew <geek+@cmu.edu>Marc G. Fournier1998-02-143-109/+22
| | | | | | | | dgux 5.4R4.11 Missing port-protos.h (not needed, I think). Wants dld.h. Should really use the system dl stuff (like i386_solaris). Needs to include <netinet/in.h> before <arpa/inet.h>. Here are some patches...
* Apparently there was aMarc G. Fournier1998-02-141-0/+1
| | | | | | | | compiler define that should have been enabled, but was not due to different naming conventions for Linux/Alpha. Attached is the patch he sent me, that I have not had a chance to test yet. From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
* Remove HBA related switchMarc G. Fournier1998-02-142-259/+211
| | | | From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
* From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>Marc G. Fournier1998-02-141-4/+4
| | | | | | | The file 'backend/utils/adt/arrayfuncs.c' won't compile with the February 14th snapshot, because of an inconsistency between the declaration and implementation of ReadArrayStr(). As far as I can tell, the predeclaration is wrong. I assume this is what was meant:
* Man page for ecpg.1Marc G. Fournier1998-02-131-0/+56
|
* Atttypmod cleanup.Bruce Momjian1998-02-138-32/+33
|
* From: Jan Wieck <jwieck@debis.com>Marc G. Fournier1998-02-131-2/+2
| | | | | | | | | | | | | | just a little correction in the pltcl_guide.nr. Sometimes I changed the name of tuple arguments to numbers like the other args are. Otherwise it wasn't possible to create a function as CREATE FUNCTION f (EMP, EMP) ... LANGUAGE 'pltcl'; The arguments are now accessed in the function as $1(name) vs. $2(name)
* From: Zeugswetter Andreas SARZ <Andreas.Zeugswetter@telecom.at>Marc G. Fournier1998-02-133-9/+9
| | | | | | | | | Only occurrs in src/include/storage/s_lock.h:#if defined(__AIX) src/include/utils/dt.h:#if defined(__AIX) src/include/utils/nabstime.h:#if defined(__AIX) Simply delete one underscore, only occurs once per file, so no patch.
* From: Jan Wieck <jwieck@debis.com>Marc G. Fournier1998-02-131-2/+2
| | | | | | | | | Someone changed the parser to build a TypeName node on CREATE FUNCTION in any case. As a side effect, ALL! functions created got the proretset attribute to true. Thus for a SELECT the parser wrapped an Iter node around the Expr and since singleton functions set isDone the Iter returns no tuple up.
* Add missing extern.h fileMarc G. Fournier1998-02-131-0/+13
|
* Makefile.in needs to be configured to use PORTNAME variableMarc G. Fournier1998-02-131-2/+4
|
* Remove interfaces/ecpg/{include,preproc}/Makefile.in from configureMarc G. Fournier1998-02-132-3/+3
|
* gram.y: ALL_SUBLINK type was returned for x Op (subquery).Vadim B. Mikheev1998-02-132-158/+169
| | | | parse_expr.c: only Op of bool type are supported currently...