summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2015-08-03Fix a number of places that produced XX000 errors in the regression tests.Tom Lane
2015-08-02Avoid calling memcpy() with a NULL source pointer and count == 0.Tom Lane
2015-08-02Fix incorrect order of lock file removal and failure to close() sockets.Tom Lane
2015-08-02Fix race condition that lead to WALInsertLock deadlock with commit_delay.Heikki Linnakangas
2015-08-02Micro optimize LWLockAttemptLock() a bit.Andres Freund
2015-08-02Fix issues around the "variable" support in the lwlock infrastructure.Andres Freund
2015-08-02Fix some planner issues with degenerate outer join clauses.Tom Lane
2015-08-01Teach predtest.c that "foo" implies "foo IS NOT NULL".Tom Lane
2015-07-31Fix an oversight in checking whether a join with LATERAL refs is legal.Tom Lane
2015-07-30Fix broken assertion in BRIN codeAlvaro Herrera
2015-07-30Use appropriate command type when retrieving relation's policies.Joe Conway
2015-07-30Avoid some zero-divide hazards in the planner.Tom Lane
2015-07-30Add IF NOT EXISTS processing to ALTER TABLE ADD COLUMNAndrew Dunstan
2015-07-29Create new ParseExprKind for use by policy expressions.Joe Conway
2015-07-29Fix incorrect comment.Robert Haas
2015-07-29Add missing post create and alter hooks to policy objects.Joe Conway
2015-07-29Remove outdated comment in LWLockDequeueSelf's header.Andres Freund
2015-07-29Fix typo in comment.Heikki Linnakangas
2015-07-28Suppress "variable may be used uninitialized" warning.Tom Lane
2015-07-28Disallow converting a table to a view if row security is present.Joe Conway
2015-07-28Create a pg_shdepend entry for each role in TO clause of policies.Joe Conway
2015-07-28Only adjust negative indexes in json_get up to the length of the path.Andrew Dunstan
2015-07-28Reduce chatter from signaling of autovacuum workers.Tom Lane
2015-07-28Plug RLS related information leak in pg_stats view.Joe Conway
2015-07-28Remove ssl renegotiation support.Andres Freund
2015-07-28Centralize decision-making about where to get a backend's PGPROC.Robert Haas
2015-07-28Remove an unsafe Assert, and explain join_clause_is_movable_into() better.Tom Lane
2015-07-28Another attempt at fixing memory leak in xlogreader.Heikki Linnakangas
2015-07-27Improve RLS handling in copy.cStephen Frost
2015-07-27Further code review for pg_stat_ssl patch.Tom Lane
2015-07-27Fix pointer-arithmetic thinko in pg_stat_ssl patch.Tom Lane
2015-07-27Don't assume that PageIsEmpty() returns true on an all-zeros page.Heikki Linnakangas
2015-07-27Fix memory leak in xlogreader facility.Heikki Linnakangas
2015-07-27Reuse all-zero pages in GIN.Heikki Linnakangas
2015-07-27Fix handling of all-zero pages in SP-GiST vacuum.Heikki Linnakangas
2015-07-27Avoid calling PageGetSpecialPointer() on an all-zeros page.Heikki Linnakangas
2015-07-27Remove false comment about speculative insertion.Heikki Linnakangas
2015-07-26Fix oversight in flattening of subqueries with empty FROM.Tom Lane
2015-07-26Make entirely-dummy appendrels get marked as such in set_append_rel_size.Tom Lane
2015-07-26Check the relevant index element in ON CONFLICT unique index inference.Andres Freund
2015-07-26Fix flattening of nested grouping sets.Andres Freund
2015-07-26Allow to push down clauses from HAVING to WHERE when grouping sets are used.Andres Freund
2015-07-26Recognize GROUPING() as a aggregate expression.Andres Freund
2015-07-26Build column mapping for grouping sets in all required cases.Andres Freund
2015-07-25Dodge portability issue (apparent compiler bug) in new tablesample code.Tom Lane
2015-07-25Redesign tablesample method API, and do extensive code review.Tom Lane
2015-07-24Make RLS work with UPDATE ... WHERE CURRENT OFJoe Conway
2015-07-24Fix treatment of nulls in jsonb_agg and jsonb_object_aggAndrew Dunstan
2015-07-24Fix bug around assignment expressions containing indirections.Andres Freund
2015-07-22Fix off-by-one error in calculating subtrans/multixact truncation point.Heikki Linnakangas