diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tokenize.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tokenize.c b/src/tokenize.c index 5fbb3c4b6..9d5832440 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.116 2006/01/20 17:56:33 drh Exp $ +** $Id: tokenize.c,v 1.117 2006/02/09 22:24:41 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -261,6 +261,7 @@ static int getToken(const unsigned char *z, int *tokenType){ #ifndef SQLITE_OMIT_TCL_VARIABLE case '$': #endif + case '@': /* For compatibility with MS SQL Server */ case ':': { int n = 0; *tokenType = TK_VARIABLE; |