- 23 Jun, 2010 1 commit
-
-
Bruce Momjian authored
-
- 22 Jun, 2010 5 commits
-
-
Bruce Momjian authored
output to the same file, because it is impossible. Also set user name for pg_dumpall in pg_upgrade.
-
Bruce Momjian authored
win32 and non-win32 platforms.
-
Robert Haas authored
This is an oversight in my previous patch to deprecate => as an operator name. Per buildfarm.
-
Robert Haas authored
In HEAD, emit a warning when an operator named => is defined. In both HEAD and the backbranches (except in 8.2, where contrib modules do not have documentation), document that hstore's text => text operator may be removed in a future release, and encourage the use of the hstore(text, text) function instead. This function only exists in HEAD (previously, it was called tconvert), so backpatch it back to 8.2, when hstore was added. Per discussion.
-
Robert Haas authored
-
- 21 Jun, 2010 2 commits
-
-
Heikki Linnakangas authored
might close the cursor, rendering the Portal pointer to it invalid. Closing the cursor in the middle of the loop is not a very sensible thing to do, but we must handle it gracefully and throw an error instead of crashing.
-
Tom Lane authored
If such a Var appeared within a nested sub-select, we failed to translate it correctly during pullup of the view, because the recursive call to replace_rte_variables_mutator was looking for the wrong sublevels_up value. Bug was introduced during the addition of the PlaceHolderVar mechanism. Per bug #5514 from Marcos Castedo.
-
- 18 Jun, 2010 1 commit
-
-
Robert Haas authored
This is not yet in any released version, so we still have the option to change the name. We may want to reserve the token => in a future release.
-
- 17 Jun, 2010 8 commits
-
-
Tom Lane authored
put the variable declaration in the middle of a bunch of externs, and do use extern where it should be used.
-
Tom Lane authored
log and seg aren't an XLogRecPtr and shouldn't be printed like one. Fujii Masao
-
Tom Lane authored
sane places, make messages follow project's message style guidelines. Also, avoid closedir(NULL). Fujii Masao and Tom Lane
-
Tom Lane authored
Spotted by Evan Carroll.
-
Tom Lane authored
master. Otherwise a subsequent crash could cause the master to lose WAL that has already been applied on the slave, resulting in the slave being out of sync and soon corrupt. Per recent discussion and an example from Robert Haas. Fujii Masao
-
Tom Lane authored
-
Robert Haas authored
Fujii Masao, with some further wordsmithing by me.
-
Itagaki Takahiro authored
-
- 16 Jun, 2010 6 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Have <command>SELECT</> and <command>CREATE TABLE AS</> return row counts to the client
-
Bruce Momjian authored
Josh Berkus
-
Andrew Dunstan authored
in the release notes, as it is not apparently providing anything useful.
-
Peter Eisentraut authored
TRANSLATION in the SQL standard.
-
Peter Eisentraut authored
constant format strings, so that the compiler can more easily check the formats for correctness.
-
- 15 Jun, 2010 10 commits
-
-
Bruce Momjian authored
Steve Singer
-
Tom Lane authored
dblink_build_sql_insert() and related functions. Now the column numbers are treated as logical not physical column numbers. This will provide saner behavior in the presence of dropped columns; furthermore, if we ever get around to allowing rearrangement of logical column ordering, the original definition would become nearly untenable from a usability standpoint. Per recent discussion of dblink's handling of dropped columns. Not back-patched for fear of breaking existing applications.
-
Bruce Momjian authored
-
Robert Haas authored
This is not yet in any released version, so we still have the option to backtrack. Instead, document hstore(text[], text[]). Per discussion.
-
Tom Lane authored
columns correctly. In passing, get rid of some dead logic in the underlying get_sql_insert() etc functions --- there is no caller that will pass null value-arrays to them. Per bug report from Robert Voinea.
-
Robert Haas authored
In particular, note that autovacuum does not yet understand that it might need to vacuum inheritance parents as a result of changes to the child tables.
-
Tom Lane authored
dblink_build_sql_insert() and related functions. In particular, be sure to reject references to dropped and out-of-range column numbers. The numbers are still interpreted as physical column numbers, though, for backward compatibility. This patch replaces Joe's patch of 2010-02-03, which handled only some aspects of the problem.
-
Andrew Dunstan authored
-
Itagaki Takahiro authored
description for vacuum_defer_cleanup_age to the correct category. Sections in postgresql.conf are also sorted in the same order with docs. Per gripe by Fujii Masao, suggestion by Heikki Linnakangas, and patch by me.
-
Bruce Momjian authored
Ruprecht on Mac (64 bit).
-
- 14 Jun, 2010 7 commits
-
-
Tom Lane authored
lock the target relation just once per SQL function call. The original coding obtained and released lock several times per call. Aside from saving a not-insignificant number of cycles, this eliminates possible race conditions if someone tries to modify the relation's schema concurrently. Also centralize locking and permission-checking logic. Problem noted while investigating a trouble report from Robert Voinea --- his problem is still to be fixed, though.
-
Bruce Momjian authored
-
Simon Riggs authored
-
Simon Riggs authored
-
Simon Riggs authored
standalone utility for removing files from archive.
-
Itagaki Takahiro authored
-
Heikki Linnakangas authored
and retry. If the record is genuinely corrupt in the master database, there's little hope of recovering, but it's better than simply retrying to apply the corrupt WAL record in a tight loop without even trying to retransmit it, which is what we used to do.
-