summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2011-05-10Adjust documentation with respect to "unknown" timezone setting.Tom Lane
2011-05-09Add C comment about the fact that the autovacuum limit can go backwardsBruce Momjian
2011-05-07Add comment about memory reordering to PredicateLockTupleRowVersionLink.Robert Haas
2011-05-06Move RegisterPredicateLockingXid() call to a safer place.Tom Lane
2011-05-06Remove precedence labeling of keywords TRUE, FALSE, UNKNOWN, and ZONE.Tom Lane
2011-05-05Clarify error message when attempting to create index on foreign tableMagnus Hagander
2011-05-02Fix pull_up_sublinks' failure to handle nested pull-up opportunities.Tom Lane
2011-05-02Improve aset.c's space management in contexts with small maxBlockSize.Tom Lane
2011-05-01Make CLUSTER lock the old table's toast table before copying data.Tom Lane
2011-04-30Lowercase status labels in pg_stat_replication view.Bruce Momjian
2011-04-29Remove special case for xmin == xmax in HeapTupleSatisfiesVacuum().Tom Lane
2011-04-29Rewrite pg_size_pretty() to avoid compiler bug.Tom Lane
2011-04-28Add some casts to try to silence most of the remaining format warnings on Min...Andrew Dunstan
2011-04-28Use a macro variable PG_PRINTF_ATTRIBUTE for the style used for checking prin...Andrew Dunstan
2011-04-27Fix array- and path-creating functions to ensure padding bytes are zeroes.Tom Lane
2011-04-27Revert "Remove hard coded formats for INT64 and use configured settings inste...Andrew Dunstan
2011-04-27Remove hard coded formats for INT64 and use configured settings instead.Andrew Dunstan
2011-04-27Use an explicit format string to keep the compiler happy.Andrew Dunstan
2011-04-26Rephrase some not-supported error messages in pg_hba.conf processing.Tom Lane
2011-04-26Complain if pg_hba.conf contains "hostssl" but SSL is disabled.Tom Lane
2011-04-26Remove incorrect HINT for use of ALTER FOREIGN TABLE on the wrong relkind.Tom Lane
2011-04-25Refactor broken CREATE TABLE IF NOT EXISTS support.Robert Haas
2011-04-25Remove partial and undocumented GRANT .. FOREIGN TABLE support.Robert Haas
2011-04-25Fix pg_size_pretty() to avoid overflow for inputs close to INT64_MAX.Tom Lane
2011-04-25Assorted minor changes to silence Windows compiler warnings.Andrew Dunstan
2011-04-25Add postmaster/postgres undocumented -b option for binary upgrades.Bruce Momjian
2011-04-25Add fast paths for cases when no serializable transactions are running.Robert Haas
2011-04-25Fix SSI-related assertion failure.Robert Haas
2011-04-24Improve cost estimation for aggregates and window functions.Tom Lane
2011-04-23Silence a few compiler warnings from gcc on MinGW.Andrew Dunstan
2011-04-23Hash indexes had better pass the index collation to support functions, too.Tom Lane
2011-04-23Fix char2wchar/wchar2char to support collations properly.Tom Lane
2011-04-23Make GIN and GIST pass the index collation to all their support functions.Tom Lane
2011-04-22Make a code-cleanup pass over the collations patch.Tom Lane
2011-04-21Avoid possible divide-by-zero in gincostestimate.Tom Lane
2011-04-21Allow ALTER TYPE .. ADD ATTRIBUTE .. CASCADE to recurse to descendants.Robert Haas
2011-04-21Fix use of incorrect constant RemoveRoleFromObjectACL.Robert Haas
2011-04-21Typo fix.Robert Haas
2011-04-21Allow ALTER TABLE name {OF type | NOT OF}.Robert Haas
2011-04-21Fix bugs in indexing of in-doubt HOT-updated tuples.Tom Lane
2011-04-20Set indcheckxmin true when REINDEX fixes an invalid or not-ready index.Tom Lane
2011-04-20Make plan_cluster_use_sort cope with no IndexOptInfo for the target index.Tom Lane
2011-04-19Avoid changing an index's indcheckxmin horizon during REINDEX.Tom Lane
2011-04-19Revert "Prevent incorrect updates of pg_index while reindexing pg_index itself."Tom Lane
2011-04-19Refrain from canonicalizing a client_encoding setting of "UNICODE".Tom Lane
2011-04-18Fix handling of collations in multi-row VALUES constructs.Tom Lane
2011-04-18Only allow typed tables to hang off composite types, not e.g. tables.Robert Haas
2011-04-18recoveryStopsHere() must check the resource manager ID.Robert Haas
2011-04-17Add check for matching column collations in ALTER TABLE ... INHERIT.Tom Lane
2011-04-17foreach() and list_delete() don't mix.Tom Lane