- 03 Feb, 2011 5 commits
-
-
Bruce Momjian authored
path variables, not directory paths.
-
Bruce Momjian authored
variable, not a directory path.
-
Robert Haas authored
Prior to 9.0, restartpoints never created, deleted, or recycled WAL files, but now they can. This code makes log_checkpoints treat checkpoints and restartpoints symmetrically. It also adjusts up the documentation of the parameter to mention restartpoints. Fujii Masao. Docs by me, as suggested by Itagaki Takahiro.
-
Tom Lane authored
-
Tom Lane authored
-
- 02 Feb, 2011 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
This allows the language-specific try/catch construct to catch and handle exceptions arising from SPI calls, matching the behavior of other PLs. As an additional bonus you no longer get all the ugly "unrecognized error in PLy_spi_execute_query" errors. Jan Urbański, reviewed by Steve Singer
-
Andrew Dunstan authored
It's for compatibility with modules like PostgreSQL::PLPerl::NYTProf.
-
- 01 Feb, 2011 19 commits
-
-
Bruce Momjian authored
auto-add columns later added to the base table.
-
Bruce Momjian authored
-
Bruce Momjian authored
data to disk, so the table or index should be recreated before the parameter is turned off again.
-
Peter Eisentraut authored
Jan Urbański, reviewed by Hitoshi Harada
-
Bruce Momjian authored
cache between queries.
-
Bruce Momjian authored
replication between different Postgres major versions.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
the support functions.
-
Andrew Dunstan authored
This is an efficiency change, and means we now no longer have to run "out $_TD; local $_TD = shift;", which was especially pointless in the case of non-trigger functions where the passed value was always undef anyway. A tiny open issue is whether we should get rid of the $prolog argument of mkfunc, and the corresponding pushed value, which is now just a constant "false". Tim Bunce, reviewed by Alex Hunsaker.
-
Magnus Hagander authored
New versions of libintl redefine setlocale() to a macro which causes problems when the backend and libintl are linked against different versions of the runtime, which is often the case in msvc builds. Hiroshi Inoue, slightly updated comment by me
-
Simon Riggs authored
-
Itagaki Takahiro authored
maximum allowed' messages, that have reported one-less dimensions. Alexey Klyukin
-
Itagaki Takahiro authored
in documentation. Thom Brown
-
Bruce Momjian authored
a mention of unencrypted passwords.
-
Bruce Momjian authored
-
Tom Lane authored
Unlike Btree-based LIKE optimization, this works for non-left-anchored search patterns. The effectiveness of the search depends on how many trigrams can be extracted from the pattern. (The worst case, with no trigrams, degrades to a full-table scan, so this isn't a panacea. But it can be very useful.) Alexander Korotkov, reviewed by Jan Urbanski
-
Bruce Momjian authored
database, not in the os-user database, per report from Magnus.
-
Simon Riggs authored
Previously reported as ERRCODE_ADMIN_SHUTDOWN, this case is now reported as ERRCODE_T_R_DATABASE_DROPPED. No message text change. Unlikely to happen on most servers, so low impact change to allow session poolers to correctly handle this situation. Tatsuo Ishii, edits by me, review by Robert Haas
-
- 31 Jan, 2011 10 commits
-
-
Heikki Linnakangas authored
-
Bruce Momjian authored
and update the pg_upgrade docs to mention its reliance on no changes to the storage format (the later based on Robert Haas's patch).
-
Bruce Momjian authored
-
Simon Riggs authored
All retryable conflict errors now have an error code that indicates that a retry is possible, correcting my incomplete fix of 2010/05/12 Tatsuo Ishii and Simon Riggs, input from Robert Haas and Florian Pflug
-
Andrew Dunstan authored
Document how to build 64 bit Windows binaries using the MinGW64 tool set. Remove recommendation against using Mingw as a build platform. Be more specific about when Cygwin is useful and when it's not, in particular note its usefulness for running psql, and add a note about building on Cygwin in non-C locales. Per recent discussions.
-
Bruce Momjian authored
Operation", merged from upgrade sections in "Installation from Source Code" and "Backup and Restore". This now gives a single place for all upgrade information.
-
Heikki Linnakangas authored
-
Heikki Linnakangas authored
With this patch, pg_basebackup doesn't write a backup_label file in the data directory, so it doesn't interfere with a pg_start/stop_backup() based backup anymore. backup_label is still included in the backup, but it is injected directly into the tar stream. Heikki Linnakangas, reviewed by Fujii Masao and Magnus Hagander.
-
Andrew Dunstan authored
-
Andrew Dunstan authored
This can be used to build 64 bit Windows binaries, not only on 64 bit Windows but on supported cross-compiling hosts including 32 bit Windows, Cygwin, Darwin and Linux.
-
- 30 Jan, 2011 1 commit
-
-
Tom Lane authored
reduce_outer_joins() mistakenly treated a semijoin like a left join for purposes of deciding whether not-null constraints created by the join's quals could be passed down into the join's left-hand side (possibly resulting in outer-join simplification there). Actually, semijoin works like inner join for this purpose, ie, we do not need to see any rows that can't possibly satisfy the quals. Hence, two-line fix to treat semi and inner joins alike. Per observation by Andres Freund about a performance gripe from Yazan Suleiman. Back-patch to 8.4, since this oversight has been there since the current handling of semijoins was implemented.
-