~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to src/include/miscadmin.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
14
14
 * Portions Copyright (c) 1994, Regents of the University of California
15
15
 *
16
 
 * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.210 2009/05/05 19:59:00 tgl Exp $
 
16
 * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.211 2009/06/11 14:49:08 momjian Exp $
17
17
 *
18
18
 * NOTES
19
19
 *        some of the information in this file should be moved to other files.
192
192
 
193
193
extern int      DateStyle;
194
194
extern int      DateOrder;
195
 
 
 
195
 
196
196
/*
197
197
 * IntervalStyles
198
 
 *   INTSTYLE_POSTGRES             Like Postgres < 8.4 when DateStyle = 'iso'
199
 
 *   INTSTYLE_POSTGRES_VERBOSE     Like Postgres < 8.4 when DateStyle != 'iso'
200
 
 *   INTSTYLE_SQL_STANDARD         SQL standard interval literals
201
 
 *   INTSTYLE_ISO_8601             ISO-8601-basic formatted intervals
 
198
 *       INTSTYLE_POSTGRES                         Like Postgres < 8.4 when DateStyle = 'iso'
 
199
 *       INTSTYLE_POSTGRES_VERBOSE         Like Postgres < 8.4 when DateStyle != 'iso'
 
200
 *       INTSTYLE_SQL_STANDARD             SQL standard interval literals
 
201
 *       INTSTYLE_ISO_8601                         ISO-8601-basic formatted intervals
202
202
 */
203
203
#define INTSTYLE_POSTGRES                       0
204
204
#define INTSTYLE_POSTGRES_VERBOSE       1