- 09 Jun, 2003 2 commits
- 08 Jun, 2003 1 commit
-
-
Tom Lane authored
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.)
-
- 07 Jun, 2003 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 06 Jun, 2003 11 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> o Have COPY return number of rows loaded/unloaded
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
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.
-
Bruce Momjian authored
> * Add checks for fclose() failure
-
Bruce Momjian authored
-
Tom Lane authored
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.
-
Peter Eisentraut authored
-
- 05 Jun, 2003 2 commits
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- 02 Jun, 2003 11 commits
-
-
Tom Lane authored
Per recent gripe.
-
Bruce Momjian authored
#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
-
Bruce Momjian authored
> * Allow logging of only data definition(DDL), or DDL and modification statements
-
Bruce Momjian authored
> * 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
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Allow SET CONSTRAINTS to be qualified by schema/table
-
Bruce Momjian authored
-
Michael Meskes authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 01 Jun, 2003 1 commit
-
-
Bruce Momjian authored
> * Add config variable to prevent auto-adding missing FROM-clause tables
-
- 31 May, 2003 4 commits
-
-
Tom Lane authored
per report from Joe Conway.
-
Bruce Momjian authored
> * Prevent whole-row references from leaking memory, e.g. SELECT COUNT(tab.*)
-
Bruce Momjian authored
> * Consider using MVCC to cache count(*) queries with no WHERE clause
-
-
- 30 May, 2003 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
in its output. Make it work with server versions back to 7.0, too.
-
Tom Lane authored
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.
-
Michael Meskes authored
-
Michael Meskes authored
-
- 29 May, 2003 1 commit
-
-
Tom Lane authored
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).
-