00001 /*------------------------------------------------------------------------- 00002 * 00003 * keywords.c 00004 * lexical token lookup for key words in PostgreSQL 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * 00011 * IDENTIFICATION 00012 * src/backend/parser/keywords.c 00013 * 00014 *------------------------------------------------------------------------- 00015 */ 00016 #include "postgres.h" 00017 00018 #include "parser/gramparse.h" 00019 00020 #define PG_KEYWORD(a,b,c) {a,b,c}, 00021 00022 00023 const ScanKeyword ScanKeywords[] = { 00024 #include "parser/kwlist.h" 00025 }; 00026 00027 const int NumScanKeywords = lengthof(ScanKeywords);