- 22 Feb, 2005 1 commit
-
-
Bruce Momjian authored
> * Add internationalized message strings
-
- 21 Feb, 2005 3 commits
-
-
Bruce Momjian authored
< * Add the client IP address to pg_stat_activity > * Add the client IP address and port to pg_stat_activity
-
Bruce Momjian authored
< * Allow server configuration parameters to be remotely modified > * Allow pg_hba.conf settings to be controlled via SQL > > This would require a new global table that is dumped to flat file for > use by the postmaster. We do a similar thing for pg_shadow currently. >
-
Bruce Momjian authored
< * Consider use of open/fcntl(O_DIRECT) to minimize OS caching > * Consider use of open/fcntl(O_DIRECT) to minimize OS caching, > especially for WAL writes
-
- 15 Feb, 2005 4 commits
-
-
Bruce Momjian authored
< The agreed syntax is: > The proposed syntax is:
-
Bruce Momjian authored
> The agreed syntax is: > GRANT SELECT ON ALL TABLES IN public TO phpuser; > GRANT SELECT ON NEW TABLES IN public TO phpuser; >
-
Bruce Momjian authored
< o Allow COPY FROM ... CVS to interpret newlines and carriage > o Allow COPY FROM ... CSV to interpret newlines and carriage
-
Bruce Momjian authored
> * Add xpath_array() to /contrib/xml2 to return results as an array
-
- 14 Feb, 2005 2 commits
-
-
Bruce Momjian authored
> * Allow the creation of indexes with mixed ascending/descending specifiers
-
Bruce Momjian authored
> * Make src/port/snprintf.c thread-safe
-
- 13 Feb, 2005 2 commits
-
-
Bruce Momjian authored
< * Add IP address to pg_stat_activity > * Add the client IP address to pg_stat_activity
-
Bruce Momjian authored
> * Add IP address to pg_stat_activity
-
- 08 Feb, 2005 2 commits
-
-
Bruce Momjian authored
< * Allow the PITR process to be debugged and data examined > * Allow the PITR process to be debugged and data examined
-
Bruce Momjian authored
the item: < o Automatic failover < < The proper solution to this will probably the use of a master/slave < replication solution like Sloney and a connection pooling tool like < pgpool. <
-
- 02 Feb, 2005 1 commit
-
-
Bruce Momjian authored
< all temporary tables, removal of any NOTIFYs, etc. This could be used < for connection pooling. We could also change RESET ALL to have this < functionality. > all temporary tables, removal of any NOTIFYs, cursors, prepared > queries(?), currval()s, etc. This could be used for connection pooling. > We could also change RESET ALL to have this functionality.
-
- 01 Feb, 2005 2 commits
-
-
Bruce Momjian authored
< * Change LIMIT/OFFSET to use int8 > * Change LIMIT/OFFSET and FETCH/MOVE to use int8
-
Bruce Momjian authored
> * Allow GRANT/REVOKE permissions to be inherited by objects based on > schema permissions
-
- 22 Jan, 2005 1 commit
-
-
Bruce Momjian authored
< BY col {DESC} LIMIT 1. Completing this item involves making this > BY col {DESC} LIMIT 1. Completing this item involves doing this < invalidated if anyone modifies the table. < > invalidated if anyone modifies the table. Another idea is to > get a count directly from a unique index, but for this to be > faster than a sequential scan it must avoid access to the heap > to obtain tuple visibility information. > > * Allow data to be pulled directly from indexes > > Currently indexes do not have enough tuple tuple visibility > information to allow data to be pulled from the index without > also accessing the heap. One way to allow this is to set a bit > to index tuples to indicate if a tuple is currently visible to > all transactions when the first valid heap lookup happens. This > bit would have to be cleared when a heap tuple is expired. >
-
- 19 Jan, 2005 1 commit
-
-
Bruce Momjian authored
> * Add 'tid != tid ' operator for use in corruption recovery
-
- 04 Jan, 2005 2 commits
-
-
Bruce Momjian authored
< * Allow building with directories containing spaces > * Allow building in directories containing spaces < There are two capabilities here, first the ability to build from a < source directory that contains spaces, and second the ability to install < into a directory that contains spaces. The first is probably not < possible because 'gmake' and other compiler tools do not fully support < spaces in path names. The second is possible with proper quoting in < the makefiles. Because PostgreSQL supports relocatable installs, it < is possible to install into a directory that doesn't contain spaces and < then copy the install to a directory with spaces. > This is probably not possible because 'gmake' and other compiler tools > do not fully support quoting of paths with spaces. > > * Allow installing to directories containing spaces > > This is possible if proper quoting is added to the makefiles for the > install targets. Because PostgreSQL supports relocatable installs, it > is already possible to install into a directory that doesn't contain > spaces and then copy the install to a directory with spaces.
-
Bruce Momjian authored
> There are two capabilities here, first the ability to build from a > source directory that contains spaces, and second the ability to install > into a directory that contains spaces. The first is probably not > possible because 'gmake' and other compiler tools do not fully support > spaces in path names. The second is possible with proper quoting in > the makefiles. Because PostgreSQL supports relocatable installs, it > is possible to install into a directory that doesn't contain spaces and > then copy the install to a directory with spaces.
-
- 02 Jan, 2005 1 commit
-
-
Bruce Momjian authored
> * Allow building with directories containing spaces
-
- 01 Jan, 2005 3 commits
-
-
Bruce Momjian authored
< the Win32 wcscoll() can be used. > the Win32 wcscoll() can be used, and perhaps other functions > like towupper().
-
Bruce Momjian authored
< the Win32 strcoll() can be used. > the Win32 wcscoll() can be used.
-
Bruce Momjian authored
< o Disallow encodings like UTF8 which which PostgreSQL supports > o Disallow encodings like UTF8 which PostgreSQL supports 914a915,917 > > To fix UTF8, the data needs to be converted to UTF16 and then > the Win32 strcoll() can be used.
-
- 27 Dec, 2004 1 commit
-
-
Bruce Momjian authored
> * Improve the background writer > > Allow the background writer to more efficiently write dirty buffers > from the end of the LRU cache and use a clock sweep algorithm to > write other dirty buffers to reduced checkpoint I/O
-
- 21 Dec, 2004 2 commits
-
-
Bruce Momjian authored
> * Allow the PITR process to be debugged and data examined
-
Bruce Momjian authored
> * Allow a warm standby system to also allow read-only queries
-
- 19 Dec, 2004 1 commit
-
-
Bruce Momjian authored
> * Allow psql \pset boolean variables to set to fixed values, rather than toggle
-
- 17 Dec, 2004 1 commit
-
-
Bruce Momjian authored
> o Disallow encodings like UTF8 which which PostgreSQL supports > but the operating system does not (already disallowed by > pginstaller)
-
- 13 Dec, 2004 3 commits
-
-
Bruce Momjian authored
< o Allow the shared memory address to be configured via GUC
-
Bruce Momjian authored
< o Remove per-backend parameter file and move into shared memory Add for Win32: > o Allow the shared memory address to be configured via GUC
-
Bruce Momjian authored
> > * Allow the size of the buffer cache used by temporary objects to be > specified as a GUC variable > > Larger local buffer cache sizes requires more efficient handling of > local cache lookups.
-
- 03 Dec, 2004 2 commits
-
-
Bruce Momjian authored
> * ANALYZE should record a pg_statistic entry for an all-NULL column
-
Bruce Momjian authored
> * Fix priority ordering of read and write light-weight locks (Neil)
-
- 02 Dec, 2004 5 commits
-
-
Bruce Momjian authored
< > o Fix problem with shared memory on the Win32 Terminal Server
-
Bruce Momjian authored
> o Improve dlerror() reporting string
-
Bruce Momjian authored
> * Allow a warm standby system to also allow read-only queries > > This is useful for checking PITR recovery. >
-
Bruce Momjian authored
> * Fix psql's display of schema information (Neil)
-
Bruce Momjian authored
> > * Allow FOR UPDATE queries to do NOWAIT locks >
-