aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* This commit was manufactured by cvs2git to create branch 'REL2_0B'.REL2_0CVS to git conversion script1996-12-09
| | | | | | 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-09
|
* Add comments defining "typelem" column of pg_type.Bryan Henderson1996-12-09
|
* Add comments describing interface to heap_getattr().Bryan Henderson1996-12-09
|
* Add CUSTOM_CC variable for Makefile.custom. Thanks Kurt Lidl.Bryan Henderson1996-12-09
|
* Reduce printing from debug level 2 ande layout change.Bruce Momjian1996-12-07
|
* Reduce printing from deub level 2 ande layout change.Bruce Momjian1996-12-07
|
* Remove Dan's fix of SELECT NULL to fix INSERT NULL.Bruce Momjian1996-12-07
|
* Fix for SELECT NULL.Bruce Momjian1996-12-07
|
* Fix from Jan agreed with by Massimo.Bruce Momjian1996-12-07
|
* _bt_updateitem is returned in code, but works only if sizes of keysVadim B. Mikheev1996-12-06
| | | | are equal.
* 1. _bt_compare fixed to work properly with new code in _bt_insertonpgVadim B. Mikheev1996-12-06
| | | | | | | | (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-04
|
* Change portname "sparc" to "sunos4" and change some portname dependencies toBryan Henderson1996-12-04
| | | | feature dependencies. Thanks Kurt J. Lidl.
* Change tests to lowercase for esthetics.Bruce Momjian1996-12-03
|
* pname=NULL -> pname="" (stringinfo.c:appendStringInfo doesn't like NULL).Vadim B. Mikheev1996-12-03
|
* Make COUNT,SUM case insensitive.Bruce Momjian1996-12-03
|
* Remove #if defined(bsdi) define SIGJMP_BUF, per Kurt Lidl.Bryan Henderson1996-12-03
|
* Reduce regression diffsBruce Momjian1996-12-02
|
* Reduce regression diff size with timezone changes and cleanup.Bruce Momjian1996-12-02
|
* Fix for inclusion of new prompt output.Bruce Momjian1996-12-01
|
* Fix compiler warning about unitialized variables.Bruce Momjian1996-12-01
|
* This patch changes quite a few instances of references of Oid'sBruce Momjian1996-11-30
| | | | | | | | | | | | 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-30
| | | | | | | | | | | 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-30
|
* Aded mention that != maps to <>.Bruce Momjian1996-11-30
|
* Add indicator for in quote or in query to prompt.Bruce Momjian1996-11-30
|
* Added BETWEEN and IN to grammar. Map != to <>.Bruce Momjian1996-11-30
|
* Allow select oid,* from table. Allow * anywhere in target list.Bruce Momjian1996-11-29
|
* vrl_min_tlen added to VRelListData.Vadim B. Mikheev1996-11-29
|
* Added: dynamic re-moving page from list of pages usable for shrinkingVadim B. Mikheev1996-11-29
| | | | if its free-space < min_tuple_len.
* Throw some double quotes on the pile!Bryan Henderson1996-11-29
|
* Fix for BSDI compile.Bruce Momjian1996-11-29
|
* Changed saved_relname size to save memory.Bruce Momjian1996-11-28
|
* Fix for "might be used uninitialized" warnings.Vadim B. Mikheev1996-11-28
|
* Make strdup work for Ultrix. Thanks Erik BertelsenBryan Henderson1996-11-28
|
* TransactionIdIsInProgress is commented outVadim B. Mikheev1996-11-27
|
* Convert ' to " in dates. Update example code to show empty query as "".Bruce Momjian1996-11-27
|
* Remove unused define's.Bruce Momjian1996-11-27
|
* no changeBruce Momjian1996-11-27
|
* Allow all empty queries to return EMPTY.Bruce Momjian1996-11-27
|
* More stuff to make it compile on various ports.Bryan Henderson1996-11-27
|
* New structures for new vacuum.Vadim B. Mikheev1996-11-27
|
* New mdtruncate() & smgrtruncate() funcs.Vadim B. Mikheev1996-11-27
|
* TransactionIdIsInProgress moved to shmem.cVadim B. Mikheev1996-11-27
|
* Shrinking and other things.Vadim B. Mikheev1996-11-27
|
* New smgrtruncate smgr' interface func.Vadim B. Mikheev1996-11-27
|
* New mdtruncate() func for single segment relations (< 2Gb).Vadim B. Mikheev1996-11-27
|
* TransactionIdIsInProgress is here now and gives quality answerVadim B. Mikheev1996-11-27
| | | | by scanning PROC structures of all running backend.
* Setting MyProc->xid to InvalidTransactionId while creatingVadim B. Mikheev1996-11-27
| | | | PROC structure (it's for new TransactionIdIsInProgress func).