aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Improve confusing comment for HeapTupleSatisfiesNow, per gripe from Greg Stark.Tom Lane2006-09-15
|
* Make postgresql.conf.sample match the initdb defaults. This fixesBruce Momjian2006-09-14
| | | | comment alignment on most systems.
* Add a couple of information functions to support direct checks on whetherTom Lane2006-09-14
| | | | | | a schema is our own temp schema or another backend's temp schema, and use these in place of some former kluges in information_schema. Per my proposal of yesterday.
* Seems no one wants this:Bruce Momjian2006-09-14
| | | | | < * -Allow PREPARE to automatically determine parameter types based on the SQL < statement (Neil)
* Done:Bruce Momjian2006-09-14
| | | | | < * -Allow protocol-level BIND parameter values to be logged, if text mode > * -Allow protocol-level BIND parameter values to be logged
* Not done yet:Bruce Momjian2006-09-14
| | | | | < o -Allow commenting of variables in postgresql.conf to restore them > o Allow commenting of variables in postgresql.conf to restore them
* Fix missing markup.Tom Lane2006-09-14
|
* Remove sslinfo copyright with author permission, keep author attribution.Bruce Momjian2006-09-14
| | | | Victor Wagner
* Remove:Bruce Momjian2006-09-14
| | | | < * Research storing only active XIDs in subtransaction cache
* Add:Bruce Momjian2006-09-14
| | | | > * Research storing only active XIDs in subtransaction cache
* Add XML item.Bruce Momjian2006-09-14
| | | | | | | > > * Improve XML support > > http://developer.postgresql.org/index.php/XML_Support
* Add description for variable-length header:Bruce Momjian2006-09-14
| | | | | > One idea is to store the header in network byte order (high bits > first), and read the high bits to determine the header length.
* Add recent ICU URL:Bruce Momjian2006-09-14
| | | | > http://archives.postgresql.org/pgsql-hackers/2006-09/msg00662.php
* Update TODO items:Bruce Momjian2006-09-14
| | | | | | | | | | | | | | | | | | < o Store disk pages with no alignment/padding? > > This involves having the user-specified order of columns > be different from the physical order. SELECT * would > need to reorder the physical values to match the > user-specified ordering. > > o Store disk pages with no alignment/padding? > > This necessitates adding CPU-required padding when moving > rows from disk to memory. > > > http://archives.postgresql.org/pgsql-hackers/2006-09/msg00848.php >
* For release notes checklist, add UTF8 URL.Bruce Momjian2006-09-14
|
* In release notes checklist, add URL for HTML non-ASCII escapes, mentionBruce Momjian2006-09-14
| | | | UTF8 escapes.
* Fix SGML markupTeodor Sigaev2006-09-14
|
* Improve error message. Per discussionTeodor Sigaev2006-09-14
| | | | http://archives.postgresql.org/pgsql-general/2006-09/msg00186.php
* GIN documentation and slightly improving GiST docs.Teodor Sigaev2006-09-14
| | | | | Thanks to Christopher Kings-Lynne <chris.kingslynne@gmail.com> for initial version and Jeff Davis <pgsql@j-davis.com> for inspection
* Cygwin systems seem to have a different error message when trying to connect ↵Michael Meskes2006-09-14
| | | | to port 0. Let's try port 20 instead.
* Added missing constuctor/destructor for interval and date.Michael Meskes2006-09-14
|
* Some small editorialization on the description of CREATE INDEXTom Lane2006-09-13
| | | | CONCURRENTLY. Greg Stark, some further tweaks by me.
* Make logging of extended-protocol commands a bit more consistent, perTom Lane2006-09-13
| | | | discussion with Guillaume Smet.
* Code review for patch to avoid second scan when vacuuming index-lessTom Lane2006-09-13
| | | | | table: avoid invoking LockBufferForCleanup without need, put out the same log message we would have before, minor code beautification.
* Change "tps" to "scale" to avoid confusionTatsuo Ishii2006-09-13
| | | | | Fix bug with handling default scaling factor in the default scenarios
* Add David Fetter:Bruce Momjian2006-09-12
| | | | > * David is David Fetter <david@fetter.org>
* Add uninstall scriptTeodor Sigaev2006-09-12
|
* Spell readme file's name correctly, per buildfarm reports.Tom Lane2006-09-12
|
* Small fix for the README install for contrib/sslinfo.Peter Eisentraut2006-09-12
| | | | Dave Page
* Seems this wasn't committed originallyMichael Meskes2006-09-12
|
* Move set_pglocale_pgservice() from path.c to exec.c, so that pulling inTom Lane2006-09-11
| | | | | path.c does not in itself force linking of both exec.c and libintl. Should fix current ecpglib build failure on pickier platforms.
* Move xml2's PG_MODULE_MAGIC block to the right source file, per Michael Fuhr.Tom Lane2006-09-11
|
* Rename the uninstall scripts for contrib/lo and contrib/tsearch2 toTom Lane2006-09-11
| | | | | | | match the convention that foo's uninstall script is uninstall_foo.sql. Also, stop installing lo_test.sql, which really ought to be made into a regression test anyway (though it's unclear how to avoid a dependency on the current OID counter...)
* Add LDAP_LIBS_FE to $(libpq) for static or AIX linking, per Albe Laurenz.Tom Lane2006-09-11
|
* Ooops, forgot to update ecpg comparison files to matchTom Lane2006-09-11
| | | | source-code change.
* Fix omissions in contrib uninstall scripts. Michael FuhrTom Lane2006-09-11
|
* Fix unportable usage complained of by icc. Per buildfarm results.Tom Lane2006-09-11
|
* Remove unnecessary brace pair.Bruce Momjian2006-09-10
|
* Back out patch added during 8.2.X development:Bruce Momjian2006-09-10
| | | | | | | Allow to_char() "D" format specifiers for interval/time. It doesn't work, and I doubt it is useful enough to fix ("D" = day of week).
* Add items:Bruce Momjian2006-09-10
| | | | | | | | | | < * Research storing disk pages with no alignment/padding > * Consider ways of storing rows more compactly on disk > > o Store disk pages with no alignment/padding? > o Reorder physical storage order to reduce padding? > o Support a smaller header for short variable-length fields? > o Reduce the row header size?
* Install a cleaner solution to the AIX libpq linking problem, as perTom Lane2006-09-10
| | | | | | | an earlier discussion. Centralize assumptions about what libpq depends on in one place in Makefile.global. I am unconvinced that this list is complete, but since ecpg seems to have gotten along with just these entries, we'll try it this way and see what happens.
* Fix dblink build for --enable-nls or --enable-openssl on AIX.Tom Lane2006-09-10
| | | | Per Chris Browne.
* Remove unhelpful/misleading advice about how to use SPI_saveplan().Tom Lane2006-09-10
| | | | Per gripe from Jack Orenstein.
* contrib/isn updates from Jeremy Kronuz.Tom Lane2006-09-10
|
* If we're going to advertise the array overlap/containment operators,Tom Lane2006-09-10
| | | | | | we probably should make them work reliably for all arrays. Fix code to handle NULLs and multidimensional arrays, move it into arrayfuncs.c. GIN is still restricted to indexing arrays with no null elements, however.
* Add missing documentation for new anyarray-overlap operator.Tom Lane2006-09-10
|
* Rename contrib contains/contained-by operators to @> and <@, per discussion.Tom Lane2006-09-10
|
* Rename contains/contained-by operators to @> and <@, per discussion thatTom Lane2006-09-10
| | | | | | | | agreed these symbols are less easily confused. I made new pg_operator entries (with new OIDs) for the old names, so as to provide backward compatibility while making it pretty easy to remove the old names in some future release cycle. This commit only touches the core datatypes, contrib will be fixed separately.
* Remove reference to contrib/mac, which isn't there anymore.Tom Lane2006-09-09
|
* Add contrib/isn module for ISBN/ISSN/EAN13/etc product numbers, andTom Lane2006-09-09
| | | | | | remove the old isbn_issn module which is about to be obsoleted by EAN13. contrib/isn is by Germán Méndez Bravo. Our thanks to Garrett A. Wollman for having written the original isbn_issn module.