aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Now that I look, that link doesn't belong there at all, does it?Tom Lane2003-06-11
|
* Fix busted markup.Tom Lane2003-06-11
|
* Remove platform-specific executable; does not belong in distribution.Tom Lane2003-06-11
|
* Represent grant options in the information schema.Peter Eisentraut2003-06-11
|
* Add Rendezvous support to postmaster, from Chris CampbellBruce Momjian2003-06-11
|
* Make sure a variable is no longer referenced when it is removed.Michael Meskes2003-06-11
| | | | | Fixed counting bug in parsing "->" operator. Removed that silly debugging function I accidently committed last night.
* Document the -h client flag can use a socket directory as well as a hostBruce Momjian2003-06-11
| | | | name.
* Remove lock* GUC variables from postgresql.conf.Bruce Momjian2003-06-11
| | | | Document why certain GUC variables aren't in postgresql.conf.
* Fixed some bugs.Michael Meskes2003-06-10
|
* Fix uninitialized memory bugTatsuo Ishii2003-06-10
| | | | Add support for PGHOST, PGPORT, PGUSER environment variables
* freeaddrinfo2() does need two parameters after all, per comment byTom Lane2003-06-09
| | | | | Kurt Roeckx. Add some documentation to try to prevent others from repeating my mistake.
* Make bison version test actually work ...Tom Lane2003-06-09
|
* libpq can now talk to either 3.0 or 2.0 protocol servers. It first triesTom Lane2003-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 Momjian2003-06-07
|
* Remove kerberos mention that doesn't support our software, from Peter.Bruce Momjian2003-06-07
|
* Update German FAQ, from Ian Barwick.Bruce Momjian2003-06-06
|
* Update FAQ from Ian Barwick.Bruce Momjian2003-06-06
|
* Add -DFRONTEND for non-MinGW Win32 ports.Bruce Momjian2003-06-06
|
* Add:Bruce Momjian2003-06-06
| | | | > o Have COPY return number of rows loaded/unloaded
* Add configure warning to check for bison version >= 1.875.Bruce Momjian2003-06-06
|
* Add mention of two auth_mod kerberos projects, from Daniel KourilBruce Momjian2003-06-06
|
* Add defense in assign_session_authorization() against trying to doTom Lane2003-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 Momjian2003-06-06
| | | | > * Add checks for fclose() failure
* Remove mention of ALTER USER able to remove passwords.Bruce Momjian2003-06-06
|
* Implement outer-level aggregates to conform to the SQL spec, withTom Lane2003-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 Eisentraut2003-06-06
|
* Information schema views about functionsPeter Eisentraut2003-06-05
|
* Support for Intel compiler on LinuxPeter Eisentraut2003-06-05
|
* Make the world at least marginally safe for usernames with embedded spaces.Tom Lane2003-06-02
| | | | Per recent gripe.
* In src/include/mb/pg_wchar.h we have:Bruce Momjian2003-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 Momjian2003-06-02
| | | | > * Allow logging of only data definition(DDL), or DDL and modification statements
* Add:Bruce Momjian2003-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 Momjian2003-06-02
|
* Add Turkish FAQ, from Devrim GUNDUZ.Bruce Momjian2003-06-02
|
* Add:Bruce Momjian2003-06-02
| | | | > * Allow SET CONSTRAINTS to be qualified by schema/table
* Update Russian FAQ, from Viktor VislobokovBruce Momjian2003-06-02
|
* Fixed segfault in forward definition parsing.Michael Meskes2003-06-02
|
* Update URL to point to proper location.Bruce Momjian2003-06-02
|
* Update Emacs settings, from Andrew DunstanBruce Momjian2003-06-02
|
* Add:Bruce Momjian2003-06-01
| | | | > * Add config variable to prevent auto-adding missing FROM-clause tables
* markTargetListOrigin neglected to handle outer-scope Vars properly;Tom Lane2003-05-31
| | | | per report from Joe Conway.
* Add:Bruce Momjian2003-05-31
| | | | > * Prevent whole-row references from leaking memory, e.g. SELECT COUNT(tab.*)
* Add:Bruce Momjian2003-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 Momjian2003-05-31
|
* Cause pg_dumpall to support the -a, -s, -x options of pg_dump.Tom Lane2003-05-30
|
* Cause pg_dumpall to include GRANT/REVOKE for database-level permissionsTom Lane2003-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 Lane2003-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 Meskes2003-05-30
|
* Sync and some minor cleanup/fixing work plus an EXEC SQL DESCRIBE prototype.Michael Meskes2003-05-30
|
* Ensure that in all flex lexers that are part of the backend, aTom Lane2003-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).