1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Allow '@' to introduce host parameter names for compatibility with

MS SQL Server.  Ticket #1671. (CVS 3067)

FossilOrigin-Name: 0738ef818d4023a5159b6bee0a65f0b83d01c1d5
This commit is contained in:
drh
2006-02-09 22:24:41 +00:00
parent 29d7210819
commit 0b2a5eeae9
4 changed files with 13 additions and 12 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is exercising the code in main.c.
#
# $Id: main.test,v 1.24 2005/11/14 22:29:06 drh Exp $
# $Id: main.test,v 1.25 2006/02/09 22:24:41 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -273,9 +273,9 @@ do_test main-3.2 {
foreach f [glob -nocomplain testdb/*] {file delete -force $f}
file delete -force testdb
sqlite3 db testdb
set v [catch {execsql {SELECT * from T1 where @x}} msg]
set v [catch {execsql {SELECT * from T1 where ^x}} msg]
lappend v $msg
} {1 {unrecognized token: "@"}}
} {1 {unrecognized token: "^"}}
do_test main-3.2.2 {
catchsql {select 'abc}
} {1 {unrecognized token: "'abc"}}