Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Tweak create_operator regress test so it doesn't illustrate | Tom Lane | 1999-04-10 |
| | | | | incorrect usage of commutator link. | ||
* | vacuumlo deals with large objects not referenced by any tables and removes them. | Peter Mount | 1999-04-10 |
| | |||
* | Fix CREATE OPERATOR ... LANGUAGE 'internal', which I broke while | Tom Lane | 1999-04-09 |
| | | | | making prosrc instead of proname be the link to the actual internal function. | ||
* | Add section from Tom Lane on hashjoin characteristics of operators. | Thomas G. Lockhart | 1999-04-08 |
| | | | | Add emacs editor hints to bottom of file. | ||
* | Add emacs editor hints to bottom of file. | Thomas G. Lockhart | 1999-04-08 |
| | |||
* | Fix some more hashjoin-related bugs in pg_operator. Fix | Tom Lane | 1999-04-07 |
| | | | | | | | hashjoin's hashFunc() so that it does the right thing with pass-by-value data types (the old code would always return 0 for int2 or char values, which would work but would slow things down a lot). Extend opr_sanity regress test to catch more kinds of errors. | ||
* | Prepare multi-byte support document for 6.5 | Tatsuo Ishii | 1999-04-07 |
| | |||
* | Unmark 'hashable' operators that can't really be used for | Tom Lane | 1999-04-07 |
| | | | | hashjoins. Extend opr_sanity regress test to help detect similar mistakes. | ||
* | Fix markup to include all closing tags. | Thomas G. Lockhart | 1999-04-06 |
| | | | | Required by newest versions of DocBook and style sheets. | ||
* | Start indenting markup. No text changes. | Thomas G. Lockhart | 1999-04-06 |
| | |||
* | Fix XREF markup and typo. | Thomas G. Lockhart | 1999-04-06 |
| | |||
* | Version string was truncating the last character. | Thomas G. Lockhart | 1999-04-06 |
| | | | | | Use memcpy() rather than StrNCpy() which had forced a string termination character at the end. | ||
* | On reflection, filesize limit ought to be an exact power | Tom Lane | 1999-04-06 |
| | | | | of 2 to save a few cycles in md.c. So, make it 2^30 not 10^9. | ||
* | Reduce default file size limit to 1Gb, and move the | Tom Lane | 1999-04-05 |
| | | | | configuration constant to config.h. | ||
* | Fix HEAP_MOVED_OFF handling in HeapTupleSatisfiesDirty | Vadim B. Mikheev | 1999-04-05 |
| | | | | (may be used while vacuuming unique btree-s). | ||
* | Fix potential overflow problems when relation size exceeds | Tom Lane | 1999-04-05 |
| | | | | | 2gig. Fix failure to reliably put the smaller relation on the inside of a hashjoin. | ||
* | We use CFLAGS = -O2 on every other gcc platform, so why not | Tom Lane | 1999-04-04 |
| | | | | hpux_gcc too? | ||
* | Use MAXALIGN value found by configure instead of a | Tom Lane | 1999-04-04 |
| | | | | hardwired assumption. | ||
* | Give a better error message if an SQL-language function is | Tom Lane | 1999-04-03 |
| | | | | | | called through fmgr. Someday we should try to actually execute the function, but that looks like it might be a major feature addition. Not something to try during beta phase. | ||
* | Fix bogus pg_amop entries for int8 hash, cidr btree, | Tom Lane | 1999-04-03 |
| | | | | polygon rtree, circle rtree indexes. | ||
* | Fix nasty bug in optimization of multiway joins: optimizer | Tom Lane | 1999-04-03 |
| | | | | would sometimes generate a plan that omitted a sort step before merge. | ||
* | Repair problems with omitted password and VALID UNTIL | Tom Lane | 1999-04-02 |
| | | | | parameters in CREATE USER. | ||
* | Remove overly presumptuous use of __STDC__ in c.h, replacing | Tom Lane | 1999-04-02 |
| | | | | | | | it with configure-script tests to see whether const, inline, volatile, etc work or not. (Curiously, configure was already doing the work to see if const and inline were OK, but the results were not getting plugged into config.h :-(.) | ||
* | Clean up compile errors and warnings, cf Billy Allie's | Tom Lane | 1999-04-02 |
| | | | | complaints (and some of my own). | ||
* | Update config.guess and config.sub to versions from | Tom Lane | 1999-04-02 |
| | | | | autoconf 2.13. | ||
* | Fix up small markup problems. Force omit-tags to nil so we have tag | Thomas G. Lockhart | 1999-03-30 |
| | | | | completion as required by the newest DocBook conventions. | ||
* | Repair cut-and-paste typo which described createdb rather than destroydb. | Thomas G. Lockhart | 1999-03-30 |
| | |||
* | Include libpq+.sgml in the doc set. | Thomas G. Lockhart | 1999-03-30 |
| | | | | Had been omitted from the integrated doc for no good reason. | ||
* | Updates from Vince Vielhaber are the first since 1997. | Thomas G. Lockhart | 1999-03-30 |
| | |||
* | Markup fixes from Vince Vielhaber. | Thomas G. Lockhart | 1999-03-30 |
| | |||
* | Add -E option | Tatsuo Ishii | 1999-03-30 |
| | |||
* | Bug fixes and enhances to psql submitted by Masaaki Sakaida | Tatsuo Ishii | 1999-03-30 |
| | | | | | | 1. Fix problems of PAGER and \? command 2. Add -E option that shows actual queries sent by \dt and friends 3. Add version number in startup banners for psql | ||
* | Small cleanups. | Bruce Momjian | 1999-03-30 |
| | |||
* | Addition to test/locale submitted by Oleg Broytmann. Comments from him: | Tatsuo Ishii | 1999-03-29 |
| | | | | | | | There are two subdirectories (ISO8859-7 and koi8-to-win1251) containing tests for Greek locale and server<=>client recoding feature (recently submitted by Tatsuo Ishii <t-ishii@sra.co.jp>; we've debugged his patches together in the field of Cyrillic support). | ||
* | change comparison char* and NULL to char* and '\0'. This should be | Tatsuo Ishii | 1999-03-29 |
| | | | | more portable way. | ||
* | Modify fmgr so that internal name (compiler name) of a built-in | Tom Lane | 1999-03-29 |
| | | | | | | | | | | function is found in prosrc field of pg_proc, not proname. This allows multiple aliases of a built-in to all be implemented as direct builtins, without needing a level of indirection through an SQL function. Replace existing SQL alias functions with builtin entries accordingly. Save a few K by not storing string names of builtin functions in fmgr's internal table (if you really want 'em, get 'em from pg_proc...). Update opr_sanity with a few more cross-checks. | ||
* | 1. Vacuum is updated for MVCC. | Vadim B. Mikheev | 1999-03-28 |
| | | | | | | | 2. Much faster btree tuples deletion in the case when first on page index tuple is deleted (no movement to the left page(s)). 3. Remember blkno of new root page in BTPageOpaque of left/right siblings when root page is splitted. | ||
* | Expanded opr_sanity test to look at pg_proc and other | Tom Lane | 1999-03-28 |
| | | | | related tables. | ||
* | New regression test to cross-check pg_type, pg_class, | Tom Lane | 1999-03-28 |
| | | | | and related tables. | ||
* | Clean up various minor irregularities detected by type_sanity | Tom Lane | 1999-03-28 |
| | | | | and newly expanded opr_sanity tests. | ||
* | Remove pg_attribute_check.sql: these checks merged into new | Tom Lane | 1999-03-28 |
| | | | | regress test 'type_sanity'. | ||
* | Fix bogus function signature for areajoinsel. | Tom Lane | 1999-03-28 |
| | | | | It still doesn't do anything, but at least now it does nothing correctly. | ||
* | Delete unused system table pg_parg. | Tom Lane | 1999-03-27 |
| | |||
* | No longer need this file here; superseded by oidjoins regress test. | Tom Lane | 1999-03-26 |
| | |||
* | Add results of findoidjoins as a standard regression test. | Tom Lane | 1999-03-26 |
| | |||
* | Remove a bunch of dead entries exposed by findoidjoins crosschecks. | Tom Lane | 1999-03-26 |
| | | | | | Apparently, whatever these things used to link to got recycled into something else ... but the dependent entries didn't. | ||
* | Update findoidjoins for 6.5: remove workaround for long-dead bug, | Tom Lane | 1999-03-26 |
| | | | | | use NOT EXISTS() which is a lot faster than NOT IN (), update documentation. | ||
* | Revise memutils.h to use alignment information gathered by | Tom Lane | 1999-03-25 |
| | | | | configure, instead of having a bunch of crufty platform-specific guesses. | ||
* | Fix multi-byte+locale problem | Tatsuo Ishii | 1999-03-25 |
| | |||
* | Clean up att_align calculations so that XXXALIGN macros | Tom Lane | 1999-03-25 |
| | | | | need not be bogus. |