Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-09-23 | Fix for backslash quote. | Bruce Momjian | |
1997-09-23 | AIx patch from Frank Dana. | Bruce Momjian | |
1997-09-23 | Cleanup. | Bruce Momjian | |
1997-09-22 | Cleanup backslashes. | Bruce Momjian | |
1997-09-22 | Fix for missing tas on some platforms. | Bruce Momjian | |
1997-09-22 | Small lock cleanup for prototype. | Bruce Momjian | |
1997-09-22 | Blowaway relation buffers from buffer pool before truncation: | Vadim B. Mikheev | |
+ BlowawayRelationBuffers(relation, blocknumber) | |||
1997-09-22 | Blowaway relation buffers from buffer pool before truncation. | Vadim B. Mikheev | |
1997-09-22 | Two copies... | Vadim B. Mikheev | |
1997-09-22 | Have to PROC_INCR_SLOCK before return. | Vadim B. Mikheev | |
1997-09-22 | Fix: Operand Order Affects OR. | Vadim B. Mikheev | |
where x <> 1 or x isnull didn't return tuples with x NULL. | |||
1997-09-22 | +#include <access/xact.h> | Vadim B. Mikheev | |
1997-09-21 | Configure OS cleanup. | Bruce Momjian | |
1997-09-21 | Make manual page for pg_passwd from README. | Bruce Momjian | |
1997-09-20 | Output changed for new ORDER BY to cope with new sorting routines. | Thomas G. Lockhart | |
1997-09-20 | Output changed to reflect extra entries from new regression tests. | Thomas G. Lockhart | |
1997-09-20 | Change ORDER BY to get consistant results with new sorting routines. | Thomas G. Lockhart | |
1997-09-20 | Update results count to reflect bad entries now being rejected by new decoder. | Thomas G. Lockhart | |
1997-09-20 | Change ORDER BY to get more consistant results. | Thomas G. Lockhart | |
1997-09-20 | Add tinterval comparison operators. | Thomas G. Lockhart | |
Add integer/money arithmetic. | |||
1997-09-20 | Add point_ne() comparison routine. | Thomas G. Lockhart | |
1997-09-20 | Add tinterval comparison routines. | Thomas G. Lockhart | |
1997-09-20 | Add integer/money arithmetic from Darren King. | Thomas G. Lockhart | |
1997-09-20 | Add point_ne() function. | Thomas G. Lockhart | |
Fix up tabbing of most function declarations. | |||
1997-09-20 | Fix typo for default units for timespan input. | Thomas G. Lockhart | |
Place single-ticks around bad argument in elog messages. Fix tabbing of large lookup tables (ugh). | |||
1997-09-20 | Include tinterval comparison functions for span of interval. | Thomas G. Lockhart | |
1997-09-20 | Include functions for integer/money arithmetic. | Thomas G. Lockhart | |
1997-09-20 | Fix up elog warning messages. | Thomas G. Lockhart | |
1997-09-20 | Add support for FLOAT(p) SQL/92 data type. | Thomas G. Lockhart | |
Allow ALTER TABLE ADD ( column ) syntax. | |||
1997-09-20 | Replace missing directory delimiter for postmaster installation command. | Thomas G. Lockhart | |
1997-09-20 | Bring in Peter's changes...finally :( | Marc G. Fournier | |
1997-09-19 | Update configure. | Bruce Momjian | |
1997-09-19 | 1997-06-15 Paul Eggert <eggert@twinsun.com> | Marc G. Fournier | |
* (src/backend/Makefile): Use `ln', not `cd;ln' so that installers can wrap ln. | |||
1997-09-19 | + _copyGroup(Group *from) | Vadim B. Mikheev | |
1997-09-19 | Fix \e and \p after query. | Bruce Momjian | |
1997-09-18 | Inline memset() as MemSet(). | Bruce Momjian | |
1997-09-18 | Have to do [[ ]] in configure.in. | Bruce Momjian | |
1997-09-18 | UPdate memset macro. | Bruce Momjian | |
1997-09-18 | Cleanup for memset macro. | Bruce Momjian | |
1997-09-18 | Add in srandom() check to configure | Marc G. Fournier | |
Add appropriate HAVE_{RANDOM,SRANDOM} values to config.h Add approrpiate #ifdef's to sparc_solaris port files for Solaris v2.6 | |||
1997-09-18 | QUERY: SELECT p.name, p.age FROM person* p ORDER BY age using >; | Vadim B. Mikheev | |
^^^^^^ - new order of tuples (due to psort changes) | |||
1997-09-18 | No more SortTuplesInTree... | Vadim B. Mikheev | |
1997-09-18 | Don't limit number of tuples in leftist trees! | Vadim B. Mikheev | |
Use qsort to sort array of tuples for nextrun when current run is done and put into leftist tree from sorted array! It's much faster and creates non-bushy tree - this is ve-e-ery good for perfomance! | |||
1997-09-18 | No more SortTuplesInTree... | Vadim B. Mikheev | |
1997-09-18 | Convert sequence names tolower. | Vadim B. Mikheev | |
1997-09-18 | ALTER TABLE ADD COLUMN: set atthasdef to FALSE. | Vadim B. Mikheev | |
1997-09-18 | Inline frequently called functions. | Bruce Momjian | |
1997-09-18 | Addded to Psortstate: | Vadim B. Mikheev | |
lt_tupcount - number of tuples in struct leftist *Tuples lasttuple - last tuple put to disk by createfirstrun() | |||
1997-09-18 | + SortTuplesInTree | Vadim B. Mikheev | |
1997-09-18 | 1. Use qsort for first run | Vadim B. Mikheev | |
2. Limit number of tuples in leftist trees: - put one tuple from current tree to disk if limit reached; - end run creation if limit reached by nextrun. 3. Avoid mergeruns() if first run is single one! |