~ubuntu-branches/ubuntu/precise/postgresql-8.4/precise-proposed

« back to all changes in this revision

Viewing changes to src/include/storage/pos.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2014-07-29 14:47:30 UTC
  • mfrom: (1.4.4)
  • Revision ID: package-import@ubuntu.com-20140729144730-gbpktxf1uyuc90kq
Tags: 8.4.22-0ubuntu0.12.04
* New upstream bug fix release: (LP: #1348176)
  - Various data integrity and other bug fixes.
  - Secure Unix-domain sockets of temporary postmasters started during make
     check.
     Any local user able to access the socket file could connect as the
     server's bootstrap superuser, then proceed to execute arbitrary code as
     the operating-system user running the test, as we previously noted in
     CVE-2014-0067. This change defends against that risk by placing the
     server's socket in a temporary, mode 0700 subdirectory of /tmp.
  - See release notes for details:
    http://www.postgresql.org/docs/current/static/release-8-4-22.html
* Drop pg_regress patch to run tests with socket in /tmp, obsolete with
  above upstream changes and not applicable any more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * been changed to just <offset> as the notion of having multiple pages
21
21
 * within a block has been removed.
22
22
 *
23
 
 * the 'offset' abstraction is somewhat confusing.      it is NOT a byte
 
23
 * the 'offset' abstraction is somewhat confusing.  it is NOT a byte
24
24
 * offset within the page; instead, it is an offset into the line
25
25
 * pointer array contained on every page that store (heap or index)
26
26
 * tuples.