- 07 Jun, 2010 2 commits
-
-
Itagaki Takahiro authored
to be initialized with proper values. Affected parameters are fillfactor, analyze_threshold, and analyze_scale_factor. Especially uninitialized fillfactor caused inefficient page usage because we built a StdRdOptions struct in which fillfactor is zero if any reloption is set for the toast table. In addition, we disallow toast.autovacuum_analyze_threshold and toast.autovacuum_analyze_scale_factor because we didn't actually support them; they are always ignored. Report by Rumko on pgsql-bugs on 12 May 2010. Analysis by Tom Lane and Alvaro Herrera. Patch by me. Backpatch to 8.4.
-
Itagaki Takahiro authored
Almost all of the terms in docs and messages were replaced, but still remains in a few comments and README files in codes.
-
- 05 Jun, 2010 1 commit
-
-
Tom Lane authored
Per gripe from Frank van Vugt.
-
- 04 Jun, 2010 2 commits
-
-
Michael Meskes authored
While the values were correctly returned they were not moved into C variables as they should be. Closes: #5489
-
Marc G. Fournier authored
tag 9.0beta2
-
- 03 Jun, 2010 18 commits
-
-
Tom Lane authored
been written out from shared memory, but the previous phrasing might be read to say that we send only what's been fsync'd.
-
Tom Lane authored
and current server clock time to SR data messages. These are not currently used on the slave side but seem likely to be useful in future, and it'd be better not to change the SR protocol after release. Per discussion. Also do some minor code review and cleanup on walsender.c, and improve the protocol documentation.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
When referring to postgresql.conf syntax, then it's without quotes (wal_level=archive); in narrative it's with double quotes. But never single quotes.
-
Alvaro Herrera authored
per recent unintended-initdb-forcing fiasco
-
Bruce Momjian authored
-
Peter Eisentraut authored
--enable-ssl -> --with-openssl
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Itagaki Takahiro authored
Now long names are adjusted with truncate_identifier() and NOTICE messages are raised if names are actually truncated. Backported to release 8.0.
-
Robert Haas authored
Fujii Masao. Review by Heikki Linnakangas and myself.
-
Bruce Momjian authored
-
Bruce Momjian authored
Tim Landscheidt
-
Bruce Momjian authored
overlaps. David Fetter
-
- 02 Jun, 2010 1 commit
-
-
Heikki Linnakangas authored
Fujii Masao
-
- 01 Jun, 2010 6 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
release notes.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Craig Ringer
-
Bruce Momjian authored
Greg Sabino Mullane
-
- 31 May, 2010 7 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
details from Alvaro Herrera.
-
Bruce Momjian authored
performed by "EXECUTE ... INTO". Jaime Casanova
-
Alvaro Herrera authored
per Josh Berkus. Add ALTER DATABASE to the "see also" section, too.
-
Bruce Momjian authored
them off. Josh Berkus, with slight wording changes by me.
-
Heikki Linnakangas authored
This was broken by my previous patch to send WAL in smaller batches. Patch by Fujii Masao.
-
- 30 May, 2010 3 commits
-
-
Tom Lane authored
We must filter out hashtable entries with frequencies less than those specified by the algorithm, else we risk emitting junk entries whose actual frequency is much less than other lexemes that did not get tabulated. This is bad enough by itself, but even worse is that tsquerysel() believes that the minimum frequency seen in pg_statistic is a hard upper bound for lexemes not included, and was thus underestimating the frequency of non-MCEs. Also, set the threshold frequency to something with a little bit of theory behind it, to wit assume that the input distribution is approximately Zipfian. This might need adjustment in future, but some preliminary experiments suggest that it's not too unreasonable. Back-patch to 8.4, where this code was introduced. Jan Urbanski, with some editorialization by Tom
-
Tom Lane authored
"val AS name" to "name := val", as per recent discussion. This patch catches everything in the original named-parameters patch, but I'm not certain that no other dependencies snuck in later (grepping the source tree for all uses of AS soon proved unworkable). In passing I note that we've dropped the ball at least once on keeping ecpg's lexer (as opposed to parser) in sync with the backend. It would be a good idea to go through all of pgc.l and see if it's in sync now. I didn't attempt that at the moment.
-
Bruce Momjian authored
-