aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Update TODO wording:Bruce Momjian2008-03-25
| | | | * Simplify integer cross-data-type operators
* Reword Win32 rint() item, per Tom.Alvaro Herrera2008-03-25
|
* Add URLs to previous discussions, per Simon.Alvaro Herrera2008-03-25
|
* added ECPGget_PGconn to exports.txtMichael Meskes2008-03-25
|
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | | > > * Add SQL-standard array_agg() and unnest() array functions > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg01017.php >
* Add to pl/pgsql TODO:Bruce Momjian2008-03-25
| | | | | | | | > > o Consider invalidating the cache or keeping seperate cached > copies when search_path changes > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg01009.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > * Add more cross-data-type operators > > http://archives.postgresql.org/pgsql-bugs/2008-01/msg00189.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | > * Detect deadlocks involving LockBufferForCleanup() > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg00873.php
* Add to psql TODO:Bruce Momjian2008-03-25
| | | | | | | | | > > o Improve display if enums > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg00826.php > >
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > o Fix port/rint.c to be spec-compliant > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg00808.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > * Consider sorting entries before inserting into btree index > > http://archives.postgresql.org/pgsql-general/2008-01/msg01010.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | | > > * Improve detection of shared memory segments being used by other > FreeBSD jails > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg00656.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | | | > > * Move pgfoundry's xlogdump to /contrib and have it rely more closely > on the WAL backend code > > http://archives.postgresql.org/pgsql-hackers/2007-11/msg00035.php >
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > * Have resource managers report the duration of their status changes > > http://archives.postgresql.org/pgsql-hackers/2007-10/msg01468.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > * Be more aggressive about creating WAL files > > http://archives.postgresql.org/pgsql-hackers/2007-10/msg01325.php
* Add:Bruce Momjian2008-03-25
| | | | | | | > o Prevent concurrent CREATE TABLE table1 from sometimes returning > a cryptic error message > > http://archives.postgresql.org/pgsql-bugs/2007-10/msg00169.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > * Have /contrib/dblink reuse unnamed connections > > http://archives.postgresql.org/pgsql-hackers/2007-10/msg00895.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | > * Remove old-style routines for manipulating tuples > > http://archives.postgresql.org/pgsql-hackers/2007-10/msg00851.php
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | | > > * Create three versions of libpgport to simplify client code > > http://archives.postgresql.org/pgsql-hackers/2007-10/msg00154.php >
* Add to TODO:Bruce Momjian2008-03-25
| | | | | | | > > * Fix regular expression bug when using complex back-references > > http://archives.postgresql.org/pgsql-bugs/2007-10/msg00000.php
* Add to TODO:Bruce Momjian2008-03-24
| | | | | | | | | | > > * Allow xml arrays to be cast to other data types > > http://archives.postgresql.org/pgsql-hackers/2007-09/msg00981.php > http://archives.postgresql.org/pgsql-hackers/2007-10/msg00231.php > http://archives.postgresql.org/pgsql-hackers/2007-11/msg00471.php >
* When a relation has been proven empty by constraint exclusion, propagate thatTom Lane2008-03-24
| | | | | | | | knowledge up through any joins it participates in. We were doing that already in some special cases but not in the general case. Also, defend against zero row estimates for the input relations in cost_mergejoin --- this fix may have eliminated the only scenario in which that can happen, but be safe. Per report from Alex Solovey.
* Use new errdetail_log() mechanism to provide a less klugy way of reportingTom Lane2008-03-24
| | | | | large numbers of dependencies on a role that couldn't be dropped. Per a comment from Alvaro.
* Fix various infelicities that have snuck into usage of errdetail() andTom Lane2008-03-24
| | | | | | friends. Avoid double translation of some messages, ensure other messages are exposed for translation (and make them follow the style guidelines), avoid unsafe passing of an unpredictable message text as a format string.
* Add to TODO:Bruce Momjian2008-03-24
| | | | | | | > > * Research reducing deTOASTing in more places > > http://archives.postgresql.org/pgsql-hackers/2007-09/msg00895.php
* Adjust the recent patch for reporting of deadlocked queries so that we reportTom Lane2008-03-24
| | | | | | | | query texts only to the server log. This eliminates the issue of possible leaking of security-sensitive data in other sessions' queries. Since the log is presumed secure, we can now log the queries of all sessions involved in the deadlock, whether or not they belong to the same user as the one reporting the failure.
* Add a new ereport auxiliary function errdetail_log(), which works the same asTom Lane2008-03-24
| | | | | | | | errdetail except the string goes only to the server log, replacing the normal errdetail there. This provides a reasonably clean way of dealing with error details that are too security-sensitive or too bulky to send to the client. This commit just adds the infrastructure --- actual uses to follow.
* Add URL for:Bruce Momjian2008-03-24
| | | | | | * SMP scalability improvements > http://archives.postgresql.org/pgsql-hackers/2007-09/msg00206.php
* Add URL to:Bruce Momjian2008-03-24
| | | | | | * SMP scalability improvements > http://archives.postgresql.org/pgsql-hackers/2008-03/msg00361.php
* Add to TODO:Bruce Momjian2008-03-24
| | | | | | | > > * SMP scalability improvements > > http://archives.postgresql.org/pgsql-hackers/2007-07/msg00439.php
* Add URL:Bruce Momjian2008-03-24
| | | | | | | | | * Allow statistics last vacuum/analyze execution times to be displayed without requiring stats_row_level to be enabled > > http://archives.postgresql.org/pgsql-docs/2007-04/msg00028.php >
* Add to TODO:Bruce Momjian2008-03-24
| | | | | | | > * Improve reporting of UNION type mismatches > > http://archives.postgresql.org/pgsql-hackers/2007-04/msg00944.php > http://archives.postgresql.org/pgsql-hackers/2008-03/msg00597.php
* Update wording:Bruce Momjian2008-03-24
| | | | | | | < o Allow pre/data/post files when dumping a single object, for < performance reasons > o Allow pre/data/post files when schema and data are dumped > separately, for performance reasons
* Update text:Bruce Momjian2008-03-23
| | | | | < o Support pgxs > o Support pgxs when using MSVC
* Add:Bruce Momjian2008-03-23
| | | | > http://archives.postgresql.org/pgsql-patches/2008-02/msg00176.php
* Re-add:Bruce Momjian2008-03-23
| | | | | | | > > * Avoid tuple some tuple copying in sort routines > > http://archives.postgresql.org/pgsql-hackers/2008-02/msg01206.php
* Add:Bruce Momjian2008-03-23
| | | | | | | > > * Sort large UPDATE/DELETEs so it is done in heap order > > http://archives.postgresql.org/pgsql-hackers/2008-01/msg01119.php
* Add URL for:Bruce Momjian2008-03-23
| | | | | | | | | * Do async I/O for faster random read-ahead of data Async I/O allows multiple I/O requests to be sent to the disk with results coming back asynchronously. > http://archives.postgresql.org/pgsql-patches/2008-01/msg00170.php
* Done:Bruce Momjian2008-03-23
| | | | | | | < < * Avoid tuple some tuple copying in sort routines < < http://archives.postgresql.org/pgsql-hackers/2008-02/msg01206.php
* Avoid a useless tuple copy within nodeMaterial. Neil ConwayTom Lane2008-03-23
|
* Add to pg_dump TODO:Bruce Momjian2008-03-23
| | | | | | | | > o Allow pre/data/post files when dumping a single object, for > performance reasons > > http://archives.postgresql.org/pgsql-hackers/2008-02/msg00205.php >
* Create a function quote_nullable(), which works the same as quote_literal()Tom Lane2008-03-23
| | | | | | | | | except that it returns the string 'NULL', rather than a SQL null, when called with a null argument. This is often a much more useful behavior for constructing dynamic queries. Add more discussion to the documentation about how to use these functions. Brendan Jurd
* Add to Win3 TODO:Bruce Momjian2008-03-23
| | | | | | | | > > o Fix MSVC NLS support, like for to_char() > > http://archives.postgresql.org/pgsql-hackers/2008-02/msg00485.php > http://archives.postgresql.org/pgsql-patches/2008-02/msg00038.php
* Add to TODO:Bruce Momjian2008-03-23
| | | | | | | | > > * Improve WAL concurrency by increasing lock granularity > > http://archives.postgresql.org/pgsql-hackers/2008-02/msg00556.php >
* Add to Win32 TODOBruce Momjian2008-03-22
| | | | | > > o Support pgxs
* Add to TODO:Bruce Momjian2008-03-22
| | | | | | | > > * Avoid tuple some tuple copying in sort routines > > http://archives.postgresql.org/pgsql-hackers/2008-02/msg01206.php
* Add URL for TODO:Bruce Momjian2008-03-22
| | | | | | o Add checks to prevent a CREATE RULE views on inherited tables > http://archives.postgresql.org/pgsql-general/2008-03/msg00077.php
* Refactor to_char/to_date formatting code; primarily, replace DCH_processorTom Lane2008-03-22
| | | | | with two new functions DCH_to_char and DCH_from_char that have less confusing APIs. Brendan Jurd
* Add to TODO:Bruce Momjian2008-03-22
| | | | | | | > > o Add checks to prevent a CREATE RULE views on inherited tables > > http://archives.postgresql.org/pgsql-general/2008-02/msg01420.php
* Add server side lo_import(filename, oid) function.Tatsuo Ishii2008-03-22
|