~ubuntu-branches/ubuntu/trusty/postgresql-9.3/trusty-proposed

« back to all changes in this revision

Viewing changes to src/include/access/skey.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2014-07-24 16:13:59 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20140724161359-uk325qfv03euxuuh
Tags: 9.3.5-0ubuntu0.14.04.1
* New upstream bug fix release: (LP: #1348176)
  - pg_upgrade: Users who upgraded to version 9.3 using pg_upgrade may have
    an issue with transaction information which causes VACUUM to eventually
    fail. These users should run the script provided in the release notes to
    determine if their installation is affected, and then take the remedy
    steps outlined there.
  - 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/about/news/1534/
* Remove pg_regress patches to support --host=/path, obsolete with above
  upstream changes and not applicable any more.
* Drop tcl8.6 patch, applied upstream.
* Add missing logrotate test dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
/*
44
44
 * A ScanKey represents the application of a comparison operator between
45
 
 * a table or index column and a constant.      When it's part of an array of
 
45
 * a table or index column and a constant.  When it's part of an array of
46
46
 * ScanKeys, the comparison conditions are implicitly ANDed.  The index
47
47
 * column is the left argument of the operator, if it's a binary operator.
48
48
 * (The data structure can support unary indexable operators too; in that
115
115
 * must be sorted according to the leading column number.
116
116
 *
117
117
 * The subsidiary ScanKey array appears in logical column order of the row
118
 
 * comparison, which may be different from index column order.  The array
 
118
 * comparison, which may be different from index column order.  The array
119
119
 * elements are like a normal ScanKey array except that:
120
120
 *              sk_flags must include SK_ROW_MEMBER, plus SK_ROW_END in the last
121
121
 *                              element (needed since row header does not include a count)