Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Remove lock* GUC variables from postgresql.conf. | Bruce Momjian | 2003-06-11 |
| | | | | Document why certain GUC variables aren't in postgresql.conf. | ||
* | Fixed some bugs. | Michael Meskes | 2003-06-10 |
| | |||
* | Fix uninitialized memory bug | Tatsuo Ishii | 2003-06-10 |
| | | | | Add support for PGHOST, PGPORT, PGUSER environment variables | ||
* | freeaddrinfo2() does need two parameters after all, per comment by | Tom Lane | 2003-06-09 |
| | | | | | Kurt Roeckx. Add some documentation to try to prevent others from repeating my mistake. | ||
* | Make bison version test actually work ... | Tom Lane | 2003-06-09 |
| | |||
* | libpq can now talk to either 3.0 or 2.0 protocol servers. It first tries | Tom Lane | 2003-06-08 |
| | | | | | | | protocol 3, then falls back to 2 if postmaster rejects the startup packet with an old-format error message. A side benefit of the rewrite is that SSL-encrypted connections can now be made without blocking. (I think, anyway, but do not have a good way to test.) | ||
* | Change configure check to use $YACC, per Tom. | Bruce Momjian | 2003-06-07 |
| | |||
* | Remove kerberos mention that doesn't support our software, from Peter. | Bruce Momjian | 2003-06-07 |
| | |||
* | Update German FAQ, from Ian Barwick. | Bruce Momjian | 2003-06-06 |
| | |||
* | Update FAQ from Ian Barwick. | Bruce Momjian | 2003-06-06 |
| | |||
* | Add -DFRONTEND for non-MinGW Win32 ports. | Bruce Momjian | 2003-06-06 |
| | |||
* | Add: | Bruce Momjian | 2003-06-06 |
| | | | | > o Have COPY return number of rows loaded/unloaded | ||
* | Add configure warning to check for bison version >= 1.875. | Bruce Momjian | 2003-06-06 |
| | |||
* | Add mention of two auth_mod kerberos projects, from Daniel Kouril | Bruce Momjian | 2003-06-06 |
| | |||
* | Add defense in assign_session_authorization() against trying to do | Tom Lane | 2003-06-06 |
| | | | | | | catalog lookups when not in a transaction. This prevents bizarre failures if someone tries to set a value for session_authorization in postgresql.conf. Per report from Fernando Nasser. | ||
* | Add: | Bruce Momjian | 2003-06-06 |
| | | | | > * Add checks for fclose() failure | ||
* | Remove mention of ALTER USER able to remove passwords. | Bruce Momjian | 2003-06-06 |
| | |||
* | Implement outer-level aggregates to conform to the SQL spec, with | Tom Lane | 2003-06-06 |
| | | | | | | | | extensions to support our historical behavior. An aggregate belongs to the closest query level of any of the variables in its argument, or the current query level if there are no variables (e.g., COUNT(*)). The implementation involves adding an agglevelsup field to Aggref, and treating outer aggregates like outer variables at planning time. | ||
* | Update documentation build instructions. | Peter Eisentraut | 2003-06-06 |
| | |||
* | Information schema views about functions | Peter Eisentraut | 2003-06-05 |
| | |||
* | Support for Intel compiler on Linux | Peter Eisentraut | 2003-06-05 |
| | |||
* | Make the world at least marginally safe for usernames with embedded spaces. | Tom Lane | 2003-06-02 |
| | | | | Per recent gripe. | ||
* | In src/include/mb/pg_wchar.h we have: | Bruce Momjian | 2003-06-02 |
| | | | | | | | | | | | | | | | | | | | | | | #define PG_ENCODING_BE_LAST PG_ISO_8859_8 #define PG_ENCODING_FE_LAST PG_WIN1256 but the last client encoding in the enum list is actually PG_GB18030 and it seems that #define PG_ENCODING_IS_CLIEN_ONLY(_enc) \ (((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST) can never be true. I think the define should read #define PG_ENCODING_FE_LAST PG_GB18030 On the other hand, perhaps no-one cares, because PG_ENCODING_IS_CLIEN_ONLY is never used. -- Oliver Elphick Oliver.Elphick@lfix.co.uk | ||
* | Add: | Bruce Momjian | 2003-06-02 |
| | | | | > * Allow logging of only data definition(DDL), or DDL and modification statements | ||
* | Add: | Bruce Momjian | 2003-06-02 |
| | | | | | | | | | | > * Allow a single index to index multiple tables (for inheritance and subtables) 408a410 > * Improve the planner to use CHECK constraints to prune the plan (for subtables) 418a421 > * Allow partitioning of table into multiple subtables 419a423 > T | ||
* | Add data partitioning idea to tablespaces discussion. | Bruce Momjian | 2003-06-02 |
| | |||
* | Add Turkish FAQ, from Devrim GUNDUZ. | Bruce Momjian | 2003-06-02 |
| | |||
* | Add: | Bruce Momjian | 2003-06-02 |
| | | | | > * Allow SET CONSTRAINTS to be qualified by schema/table | ||
* | Update Russian FAQ, from Viktor Vislobokov | Bruce Momjian | 2003-06-02 |
| | |||
* | Fixed segfault in forward definition parsing. | Michael Meskes | 2003-06-02 |
| | |||
* | Update URL to point to proper location. | Bruce Momjian | 2003-06-02 |
| | |||
* | Update Emacs settings, from Andrew Dunstan | Bruce Momjian | 2003-06-02 |
| | |||
* | Add: | Bruce Momjian | 2003-06-01 |
| | | | | > * Add config variable to prevent auto-adding missing FROM-clause tables | ||
* | markTargetListOrigin neglected to handle outer-scope Vars properly; | Tom Lane | 2003-05-31 |
| | | | | per report from Joe Conway. | ||
* | Add: | Bruce Momjian | 2003-05-31 |
| | | | | > * Prevent whole-row references from leaking memory, e.g. SELECT COUNT(tab.*) | ||
* | Add: | Bruce Momjian | 2003-05-31 |
| | | | | > * Consider using MVCC to cache count(*) queries with no WHERE clause | ||
* | Add item about sending success stories to http://advocacy.postgresql.org. | Bruce Momjian | 2003-05-31 |
| | |||
* | Cause pg_dumpall to support the -a, -s, -x options of pg_dump. | Tom Lane | 2003-05-30 |
| | |||
* | Cause pg_dumpall to include GRANT/REVOKE for database-level permissions | Tom Lane | 2003-05-30 |
| | | | | in its output. Make it work with server versions back to 7.0, too. | ||
* | Small performance improvement for hash joins and hash aggregation: | Tom Lane | 2003-05-30 |
| | | | | | | | when the plan is ReScanned, we don't have to rebuild the hash table if there is no parameter change for its child node. This idea has been used for a long time in Sort and Material nodes, but was not in the hash code till now. | ||
* | Create a real prototype function for describe. | Michael Meskes | 2003-05-30 |
| | |||
* | Sync and some minor cleanup/fixing work plus an EXEC SQL DESCRIBE prototype. | Michael Meskes | 2003-05-30 |
| | |||
* | Ensure that in all flex lexers that are part of the backend, a | Tom Lane | 2003-05-29 |
| | | | | | | | yy_fatal_error() call results in elog(ERROR) not exit(). This was already fixed in the main lexer and plpgsql, but extend same technique to all the other dot-l files. Also, on review of the possible calls to yy_fatal_error(), it seems safe to use elog(ERROR) not elog(FATAL). | ||
* | one more change to correctly support the removeall of autocommit | Barry Lind | 2003-05-29 |
| | |||
* | Adopt latest bison's spelling of 'syntax error' rather than 'parse error' | Tom Lane | 2003-05-29 |
| | | | | | for grammar-detected problems. Revert Makefile hack that kept it looking like the pre-bison-1.875 output. | ||
* | Don't explicitly close() the session socket during backend exit; instead | Tom Lane | 2003-05-29 |
| | | | | | | leave it for the kernel to do after the process dies. This allows clients to wait for the backend to exit if they wish (after sending X message, wait till EOF is detected on the socket). | ||
* | AFAICT, none of our shared libraries are anywhere near big enough to | Tom Lane | 2003-05-29 |
| | | | | need -fPIC on HPPA. Reduce to -fpic. | ||
* | Changed variable parsing so struct[n].attr works. | Michael Meskes | 2003-05-29 |
| | |||
* | Parse forward definiton of structs. | Michael Meskes | 2003-05-29 |
| | |||
* | Applied patch from Fernando Nasser to fix up small type error | Barry Lind | 2003-05-29 |
| |