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

« back to all changes in this revision

Viewing changes to src/interfaces/ecpg/preproc/c_keywords.c

  • 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:
3
3
 * keywords.c
4
4
 *        lexical token lookup for reserved words in postgres embedded SQL
5
5
 *
6
 
 * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/c_keywords.c,v 1.22 2008/05/20 23:17:32 meskes Exp $
 
6
 * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/c_keywords.c,v 1.23 2009/06/11 14:49:13 momjian Exp $
7
7
 * §
8
8
 *-------------------------------------------------------------------------
9
9
 */
22
22
 */
23
23
static const ScanKeyword ScanCKeywords[] = {
24
24
        /* name, value, category */
25
 
        /* category is not needed in ecpg, it is only here so we can share
26
 
         * the data structure with the backend */
 
25
 
 
26
        /*
 
27
         * category is not needed in ecpg, it is only here so we can share the
 
28
         * data structure with the backend
 
29
         */
27
30
        {"VARCHAR", VARCHAR, 0},
28
31
        {"auto", S_AUTO, 0},
29
32
        {"bool", SQL_BOOL, 0},