- 09 Jul, 2003 1 commit
-
-
Bruce Momjian authored
or increased only by super-users. This fixes problems caused by making certain variables SUSET for security reasons.
-
- 04 Jul, 2003 1 commit
-
-
Tom Lane authored
without needing a running backend. Reorder postgresql.conf.sample to match new layout of runtime.sgml. This commit re-adds work lost in Wednesday's crash.
-
- 30 Jun, 2003 1 commit
-
-
Tom Lane authored
reports get put into the postmaster log. Options are TERSE, DEFAULT, VERBOSE, with the same behavior as implemented on the client side in libpq.
-
- 27 Jun, 2003 1 commit
-
-
Bruce Momjian authored
-
- 25 Jun, 2003 1 commit
-
-
Bruce Momjian authored
Runtime.sgml and dependant files. Josh Berkus
-
- 12 Jun, 2003 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 11 Jun, 2003 2 commits
-
-
Bruce Momjian authored
Nigel J. Andrews
-
Bruce Momjian authored
Christopher Kings-Lynne
-
- 27 May, 2003 1 commit
-
-
Bruce Momjian authored
docs that CLIENT/LOG_MIN_MESSAGES now controls debug_* output location. Doc changes included.
-
- 23 May, 2003 1 commit
-
-
Bruce Momjian authored
-
- 15 May, 2003 1 commit
-
-
Peter Eisentraut authored
class when lc_collate is not C.
-
- 14 May, 2003 1 commit
-
-
Tom Lane authored
only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
-
- 04 May, 2003 1 commit
-
-
Peter Eisentraut authored
-
- 04 Apr, 2003 1 commit
-
-
Tom Lane authored
return type, make protection condition agree with recent change to pg_stat_get_backend_activity, clean up documentation.
-
- 03 Apr, 2003 1 commit
-
-
Tom Lane authored
find out about it is to read the documentation that tells you how dangerous it is. Add default_transaction_read_only to documentation; seems to have been overlooked in patch that added read-only transactions. Clean up check_guc comparison script, which has been suffering bit rot.
-
- 28 Mar, 2003 1 commit
-
-
Tom Lane authored
page when it's read in, per pghackers discussion around 17-Feb. Add a GUC variable zero_damaged_pages that causes the response to be a WARNING followed by zeroing the page, rather than the normal ERROR; this is per Hiroshi's suggestion that there needs to be a way to get at the data in the rest of the table.
-
- 25 Mar, 2003 1 commit
-
-
Peter Eisentraut authored
vague cross-references with real links.
-
- 24 Mar, 2003 1 commit
-
-
Peter Eisentraut authored
-
- 20 Mar, 2003 2 commits
-
-
Bruce Momjian authored
> weird behavior across fork boundaries; (b) the additional memory space > that has to be duplicated into child processes will cost something per > child launch, even if the child never uses it. But these are only > arguments that it might not *always* be a prudent thing to do, not that > we shouldn't give the DBA the tool to do it if he wants. So fire away. Here is a patch for the above, including a documentation update. It creates a new GUC variable "preload_libraries", that accepts a list in the form: preload_libraries = '$libdir/mylib1:initfunc,$libdir/mylib2' If ":initfunc" is omitted or not found, no initialization function is executed, but the library is still preloaded. If "$libdir/mylib" isn't found, the postmaster refuses to start. In my testing with PL/R, it reduces the first call to a PL/R function (after connecting) from almost 2 seconds, down to about 8 ms. Joe Conway
-
Bruce Momjian authored
Neil Conway
-
- 04 Mar, 2003 1 commit
-
-
Tom Lane authored
Adjustable threshold is gone in favor of keeping track of total requested page storage and doling out proportional fractions to each relation (with a minimum amount per relation, and some quantization of the results to avoid thrashing with small changes in page counts). Provide special- case code for indexes so as not to waste space storing useless page free space counts. Restructure internal data storage to be a flat array instead of list-of-chunks; this may cost a little more work in data copying when reorganizing, but allows binary search to be used during lookup_fsm_page_entry().
-
- 19 Feb, 2003 1 commit
-
-
Bruce Momjian authored
- more work from the SGML police - some grammar improvements: rewriting a paragraph or two, replacing contractions where (IMHO) appropriate - fix missing utility commands in lock mode docs - improve CLUSTER, REINDEX, SET SESSION AUTHORIZATION ref pages Neil Conway
-
- 06 Feb, 2003 1 commit
-
-
Tom Lane authored
expression accepted by the regex operators, per discussion yesterday. Along the way, reduce deadlock_timeout from PGC_POSTMASTER to PGC_SIGHUP category. It is probably best to insist that all backends share the same setting, but that doesn't mean it has to be frozen at startup.
-
- 25 Jan, 2003 1 commit
-
-
Tom Lane authored
necessarily following the JOIN syntax to develop the query plan. The old behavior is still available by setting GUC variable JOIN_COLLAPSE_LIMIT to 1. Also create a GUC variable FROM_COLLAPSE_LIMIT to control the similar decision about when to collapse sub-SELECT lists into their parent lists. (This behavior existed already, but the limit was always GEQO_THRESHOLD/2; now it's separately adjustable.)
-
- 11 Jan, 2003 1 commit
-
-
Bruce Momjian authored
> > I'd suggest that the runtime.sgml description explicitly say "values of > at least a few thousand are recommended for production installations". Neil Conway
-
- 27 Dec, 2002 1 commit
-
-
Bruce Momjian authored
Philip Warner
-
- 10 Dec, 2002 1 commit
-
-
Bruce Momjian authored
doc/src/sgml/runtime.sgml Neil Conway
-
- 09 Dec, 2002 1 commit
-
-
Bruce Momjian authored
"OS/X". Neil Conway
-
- 06 Dec, 2002 2 commits
-
-
Bruce Momjian authored
Jeff Davis
-
Bruce Momjian authored
Joseph Shraibman
-
- 04 Dec, 2002 1 commit
-
-
Bruce Momjian authored
Shraibman.
-
- 21 Nov, 2002 3 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
database access outside a transaction; revert bogus performance improvement in SIBackendInit(); improve comments; add documentation (this part courtesy Neil Conway).
-
Tom Lane authored
parameter to allow it to be forced off for comparison purposes. Add ORDER BY clauses to a bunch of regression test queries that will otherwise produce randomly-ordered output in the new regime.
-
- 15 Nov, 2002 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
few WAL files.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
! #show_parser_stats = false ! #show_planner_stats = false ! #show_executor_stats = false ! #show_statement_stats = false TO: ! #log_parser_stats = false ! #log_planner_stats = false ! #log_executor_stats = false ! #log_statement_stats = false
-