We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentfdc02f8 commit46426b6Copy full SHA for 46426b6
src/include/parser/keywords.h
@@ -1,14 +1,13 @@
1
/*-------------------------------------------------------------------------
2
*
3
* keywords.h
4
- * string,atom lookup thingy, reduces strcmp traffic greatly
5
- * in the bowels of the system.Look for actual defs in lib/C/atoms.c
+ * lexical token lookup for reserved words in postgres SQL
6
7
8
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
9
* Portions Copyright (c) 1994, Regents of the University of California
10
11
- * $Id: keywords.h,v 1.7 2000/01/26 05:58:26 momjian Exp $
+ * $Id: keywords.h,v 1.8 2000/08/29 02:00:38 tgl Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -22,6 +21,5 @@ typedef struct ScanKeyword
22
21
}ScanKeyword;
23
24
externScanKeyword*ScanKeywordLookup(char*text);
25
-externchar*AtomValueGetString(intatomval);
26
27
#endif/* KEYWORDS_H */