summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Here's a little patch to keep the compiler quiet when compiling PostgreSQL V6.0REL2_0BMarc G. Fournier1996-12-221-1/+1
| | | | | | on the SPARC Solaris2 platform. Submitted by: Keith Parks <emkxp01@mtcc.demon.co.uk>
* I found that when changing databases from within psql the prompt went sort ofMarc G. Fournier1996-12-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | strange. bash$ psql disks Welcome to the POSTGRESQL interactive sql monitor: Please read the file COPYRIGHT for copyright terms of POSTGRESQL type \? for help on slash commands type \q to quit type \g or terminate with semicolon to execute query You are currently connected to the database: disks disks=> \c postgres closing connection to database: disks connecting to new database: postgres postgres== \c disks closing connection to database: postgres connecting to new database: disks disks== \q bash$ Note the => changes to == after a connect and stays that way on subsequent database changes. Submitted by: Keith Parks <emkxp01@mtcc.demon.co.uk>
* This allows GROUP BY to use column aliases, and ORDER and GROUP BY canMarc G. Fournier1996-12-224-65/+110
| | | | | | use column numbers, like ANSI. Submitted by: Bruce Momjian <maillist@candle.pha.pa.us>
* There are a number of tests "[" that fail if the variable is not enclosed inMarc G. Fournier1996-12-221-10/+10
| | | | | | quotes (") and the sed scripts need to be in single quotes Submitted by: Keith Parks <emkxp01@mtcc.demon.co.uk>
* Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.Vadim B. Mikheev1996-12-141-2/+2
| | | | Excuse me.
* if (settings->opt.fieldSep);Vadim B. Mikheev1996-12-141-2/+2
| | | | | ^ - deleted free(settings->opt.fieldSep);
* Avoiding:Vadim B. Mikheev1996-12-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | cc1: warnings being treated as errors datum.c: In function `DatumGetSize': datum.c:57: warning: unsigned value >= 0 is always 1 gmake[3]: *** [datum.o] Error 1 There was: if (byVal) { if (len >= 0 && len <= sizeof(Datum)) { but len has type Size (unsigned int) and so now there is: if (byVal) { if (len <= sizeof(Datum)) { size = len; } else { elog(WARN, "datumGetSize: Error: type=%ld, byVaL with len=%d", (long) type, len); } } else { /* not byValue */
* const register ... --> register const ...Vadim B. Mikheev1996-12-141-2/+2
|
* AvoidingVadim B. Mikheev1996-12-141-1/+5
| | | | | | | | | | | | | | cc1: warnings being treated as errors exc.c: In function 'ExcRaise': exc.c:186: warning: passing arg 1 of 'Longjmp' from incompatible pointer type gmake[3]: *** [exc.o] Error 1 Now we have: #if defined (JMP_BUF) longjmp(efp->context, 1); #else siglongjmp(efp->context, 1); #endif
* AvoidingVadim B. Mikheev1996-12-141-4/+4
| | | | | | | | cc1: warnings being treated as errors transsup.c: In function `TransBlockGetLastTransactionIdStatus': transsup.c:122: warning: unsigned value >= 0 is always 1 gmake[3]: *** [transsup.o] Error 1 ...
* Unuseful tupDesc = CreateTupleDesc(attr_count, attr); in CopyFromVadim B. Mikheev1996-12-141-2/+6
| | | | | is eliminated (now I can copy 2000000-table from file without memmory exhausting).
* remove that pesky 95Bruce Momjian1996-12-131-2/+2
|
* Small regression and doc patchBruce Momjian1996-12-132-21/+7
|
* Change postgres95 to PostgreSQL.Bruce Momjian1996-12-114-11/+11
|
* Require seimcolons between statements.Bruce Momjian1996-12-111-9/+7
|
* Rename postgres95 to PostgreSQL. Add comment for SELECT NULLBruce Momjian1996-12-1161-186/+385
|
* Test two...branch REL2_0B works...I thinkMarc G. Fournier1996-12-101-2/+1
|
* This commit was manufactured by cvs2git to create branch 'REL2_0B'.REL2_0CVS to git conversion script1996-12-092-1089/+0
| | | | | | Sprout from master 1996-12-09 01:24:53 UTC Bryan Henderson <bryanh@giraffe.netgate.net> 'Remove include of libpq-fe.h. This file has nothing to do with libpq.' Delete: src/bin/monitor/Makefile src/bin/monitor/monitor.c
* Remove include of libpq-fe.h. This file has nothing to do with libpq.Bryan Henderson1996-12-091-2/+3
|
* Add comments defining "typelem" column of pg_type.Bryan Henderson1996-12-091-7/+11
|
* Add comments describing interface to heap_getattr().Bryan Henderson1996-12-091-21/+30
|
* Add CUSTOM_CC variable for Makefile.custom. Thanks Kurt Lidl.Bryan Henderson1996-12-091-7/+11
|
* Reduce printing from debug level 2 ande layout change.Bruce Momjian1996-12-072-13/+22
|
* Reduce printing from deub level 2 ande layout change.Bruce Momjian1996-12-071-2/+2
|
* Remove Dan's fix of SELECT NULL to fix INSERT NULL.Bruce Momjian1996-12-072-6/+4
|
* Fix for SELECT NULL.Bruce Momjian1996-12-071-2/+3
|
* Fix from Jan agreed with by Massimo.Bruce Momjian1996-12-071-1/+4
|
* _bt_updateitem is returned in code, but works only if sizes of keysVadim B. Mikheev1996-12-061-50/+76
| | | | are equal.
* 1. _bt_compare fixed to work properly with new code in _bt_insertonpgVadim B. Mikheev1996-12-061-10/+91
| | | | | | | | (old _bt_compare always returned >= 0 while comparing with P_HIKEY on root page - it breaks root page when _bt_insertonpg tries insert new minimal key into root page). 2. Fixed bug concerns "empty" pages: non-rightmost pages with only P_HIKEY present on it. Such pages appear after vacuum.
* Remove duplicate patch for COUNT fix.Bruce Momjian1996-12-042-21/+3
|
* Change portname "sparc" to "sunos4" and change some portname dependencies toBryan Henderson1996-12-0412-151/+96
| | | | feature dependencies. Thanks Kurt J. Lidl.
* Change tests to lowercase for esthetics.Bruce Momjian1996-12-031-11/+11
|
* pname=NULL -> pname="" (stringinfo.c:appendStringInfo doesn't like NULL).Vadim B. Mikheev1996-12-031-2/+2
|
* Make COUNT,SUM case insensitive.Bruce Momjian1996-12-032-3/+21
|
* Remove #if defined(bsdi) define SIGJMP_BUF, per Kurt Lidl.Bryan Henderson1996-12-031-4/+1
|
* Reduce regression diffsBruce Momjian1996-12-021-2/+2
|
* Reduce regression diff size with timezone changes and cleanup.Bruce Momjian1996-12-024-56/+82
|
* Fix for inclusion of new prompt output.Bruce Momjian1996-12-011-10/+12
|
* Fix compiler warning about unitialized variables.Bruce Momjian1996-12-011-2/+2
|
* This patch changes quite a few instances of references of Oid'sBruce Momjian1996-11-3011-95/+103
| | | | | | | | | | | | as ints and longs. Touches on quite a few function args as well. Most other files look ok as far as Oids go...still checking though... Since Oids are type'd as unsigned ints, they should prolly be used with the %ud format string in elog and sprintf messages. Not sure what kind of strangeness that could produce. Darren King
* As someone asked for this feature - patch for 1.09 follows.Bruce Momjian1996-11-303-14/+52
| | | | | | | | | | | Now You can do queries like select sum(some_func(x)) from ... select min(table1.x + table2.y) from table1, table2 where ... and so on. Vadim
* Change end-of-line comma to semicolon.Bruce Momjian1996-11-301-2/+2
|
* Aded mention that != maps to <>.Bruce Momjian1996-11-301-6/+41
|
* Add indicator for in quote or in query to prompt.Bruce Momjian1996-11-301-1/+8
|
* Added BETWEEN and IN to grammar. Map != to <>.Bruce Momjian1996-11-303-17/+55
|
* Allow select oid,* from table. Allow * anywhere in target list.Bruce Momjian1996-11-292-21/+23
|
* vrl_min_tlen added to VRelListData.Vadim B. Mikheev1996-11-291-1/+3
|
* Added: dynamic re-moving page from list of pages usable for shrinkingVadim B. Mikheev1996-11-291-3/+60
| | | | if its free-space < min_tuple_len.
* Throw some double quotes on the pile!Bryan Henderson1996-11-291-4/+4
|
* Fix for BSDI compile.Bruce Momjian1996-11-291-8/+1
|