- 26 Jan, 2011 10 commits
-
-
Peter Eisentraut authored
Older versions of GCC appear to report these with the current standard option set, newer versions need -Wformat-security.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
sections, rather than just calling it "/contrib/module_name". Also update pg_test_fsync build instructions now that it is in /contrib.
-
Bruce Momjian authored
non-durable items, per Robert Haas.
-
Itagaki Takahiro authored
-
Robert Haas authored
Noah Misch, slightly revised.
-
Robert Haas authored
The previous coding prevented ALTER TABLE .. ADD COLUMN from being used with a non-NULL default in situations where the table's rowtype was being used elsewhere. But this is a completely arbitrary restriction since you could do the same operation in multiple steps (add the column, add the default, update the table). Inspired by a patch from Noah Misch, though I didn't use his code.
-
Bruce Momjian authored
always 8k writes, per suggestion from Tom. Also adjust open_sync output layout.
-
Bruce Momjian authored
Robvert Haas.
-
- 25 Jan, 2011 9 commits
-
-
Robert Haas authored
The latter is the correct name of the operation to change the data type of a column. Noah Misch
-
Tom Lane authored
We used to do that on pg_listener, but pg_listener is no more. Also add a bit more documentation for ShareRowExclusive mode.
-
Robert Haas authored
Noah Misch
-
Tom Lane authored
There isn't any need to track this state on a table-wide basis, and trying to do so introduces undesirable semantic fuzziness. Move the flag to pg_index, where it clearly describes just a single index and can be immutable after index creation.
-
Tom Lane authored
This feature allows a unique or pkey constraint to be created using an already-existing unique index. While the constraint isn't very functionally different from the bare index, it's nice to be able to do that for documentation purposes. The main advantage over just issuing a plain ALTER TABLE ADD UNIQUE/PRIMARY KEY is that the index can be created with CREATE INDEX CONCURRENTLY, so that there is not a long interval where the table is locked against updates. On the way, refactor some of the code in DefineIndex() and index_create() so that we don't have to pass through those functions in order to create the index constraint's catalog entries. Also, in parse_utilcmd.c, pass around the ParseState pointer in struct CreateStmtContext to save on notation, and add error location pointers to some error reports that didn't have one before. Gurjeet Singh, reviewed by Steve Singer and Tom Lane
-
Magnus Hagander authored
Fujii Masao
-
Bruce Momjian authored
-
Bruce Momjian authored
it is 8k as expected.
-
Bruce Momjian authored
-
- 24 Jan, 2011 11 commits
-
-
Peter Eisentraut authored
This option was recently introduced, but the documentation in help.c was not updated.
-
Peter Eisentraut authored
This way errors from fetching tuples are correctly reported as errors in the SPI call. While at it, avoid palloc(0). Jan Urbański
-
Peter Eisentraut authored
Instead of checking whether the arglist is NULL and then if its length is 0, do it in one step, and outside of the try/catch block. Jan Urbański
-
Robert Haas authored
Thom Brown and Robert Haas
-
Heikki Linnakangas authored
against 9.0 servers.
-
Magnus Hagander authored
In passing, change exclusion in the build to follow the same pattern as other always-excluded modules.
-
Heikki Linnakangas authored
Itagaki Takahiro
-
Robert Haas authored
Joey Adams
-
Robert Haas authored
-
Robert Haas authored
Robert Haas, with a few suggestions from Thom Brown
-
Robert Haas authored
This is still pretty rough - among other things, the documentation needs work, and the messages need a visit from the style police - but this gets the basic framework in place. KaiGai Kohei
-
- 23 Jan, 2011 10 commits
-
-
Magnus Hagander authored
While doing this, also move base backup options into a struct instead of increasing the number of parameters to multiple functions for each new option.
-
Magnus Hagander authored
-
Heikki Linnakangas authored
with the 'tar' format, in that untarring a tar format archive produces a valid directory format archive. Joachim Wieland and Heikki Linnakangas
-
Tom Lane authored
The target of sscanf with a %o format had better be of integer width, but "mode_t" conceivably isn't that. Another compiler warning seen only on some platforms; this one I think is potentially a real bug and not just a warning.
-
Tom Lane authored
Include the lefttype/righttype columns explicitly (instead of assuming the reader can deduce them from the operator or function description), and move the operator or function description to the end of the string, to make it clearer that it's a referenced object and not the amop or amproc item itself. Per extensive discussion of Andreas Karlsson's original patch. Andreas Karlsson, Tom Lane
-
Tom Lane authored
This reverts commit 740e54ca, which seems to have tickled an optimization bug in gcc 4.5.x, as reported upstream at https://bugzilla.redhat.com/show_bug.cgi?id=671899 Since this patch had no purpose beyond code beautification, it's not worth expending a lot of effort to look for another workaround.
-
Tom Lane authored
-
Tom Lane authored
-
Andrew Dunstan authored
-
Magnus Hagander authored
Per buildfarm.
-