aboutsummaryrefslogtreecommitdiff
path: root/src/tokenize.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2001-10-08 13:22:32 +0000
committerdrh <drh@noemail.net>2001-10-08 13:22:32 +0000
commitf57b339988d5caa23a2482c6c4f47a3c537efd58 (patch)
tree66d9884af5ca0de41c9fac7dd94abc10beae477f /src/tokenize.c
parent382c0247c70a73797185ffd18fcc6b79e8ca2c60 (diff)
downloadsqlite-f57b339988d5caa23a2482c6c4f47a3c537efd58.tar.gz
sqlite-f57b339988d5caa23a2482c6c4f47a3c537efd58.zip
Support for temporary tables added. Still need more testing. (CVS 279)
FossilOrigin-Name: 9368c62e4097aae3081a325962c1dec167fd253d
Diffstat (limited to 'src/tokenize.c')
-rw-r--r--src/tokenize.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tokenize.c b/src/tokenize.c
index 619ae6ea9..0ad771150 100644
--- a/src/tokenize.c
+++ b/src/tokenize.c
@@ -15,7 +15,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
-** $Id: tokenize.c,v 1.24 2001/10/06 16:33:03 drh Exp $
+** $Id: tokenize.c,v 1.25 2001/10/08 13:22:33 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -84,6 +84,8 @@ static Keyword aKeywordTable[] = {
{ "SELECT", 0, TK_SELECT, 0 },
{ "SET", 0, TK_SET, 0 },
{ "TABLE", 0, TK_TABLE, 0 },
+ { "TEMP", 0, TK_TEMP, 0 },
+ { "TEMPORARY", 0, TK_TEMP, 0 },
{ "TRANSACTION", 0, TK_TRANSACTION, 0 },
{ "UNION", 0, TK_UNION, 0 },
{ "UNIQUE", 0, TK_UNIQUE, 0 },