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

Handle quotes on the table name in TABLE.* terms in SELECT statements.

Ticket #680. (CVS 1833)

FossilOrigin-Name: 826b6797a9f08c69b9378cb403d746e91a54dcde
This commit is contained in:
drh
2004-07-20 01:45:19 +00:00
parent 6458e39c12
commit cf55b7aef7
4 changed files with 24 additions and 19 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the SELECT statement.
#
# $Id: select1.test,v 1.34 2004/07/18 20:52:32 drh Exp $
# $Id: select1.test,v 1.35 2004/07/20 01:45:21 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -621,11 +621,16 @@ do_test select1-11.3 {
SELECT * FROM t3 AS x, t4 AS y;
}
} {x.a 1 x.b 2 y.a 3 y.b 4}
do_test select1-11.4 {
do_test select1-11.4.1 {
execsql {
SELECT t3.*, t4.b FROM t3, t4;
}
} {1 2 4}
do_test select1-11.4.2 {
execsql {
SELECT "t3".*, t4.b FROM t3, t4;
}
} {1 2 4}
do_test select1-11.5 {
execsql2 {
SELECT t3.*, t4.b FROM t3, t4;