1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Remove debugging code that was accidently left in join4.test. (CVS 1819)

FossilOrigin-Name: e36e59f02eec166ef2c4e0991c97ceb536e3c3f3
This commit is contained in:
drh
2004-07-19 19:28:44 +00:00
parent 2ffb11855a
commit 8d7e24f1d3
3 changed files with 8 additions and 9 deletions

View File

@ -13,7 +13,7 @@
# This file implements tests for left outer joins containing WHERE
# clauses that restrict the scope of the left term of the join.
#
# $Id: join4.test,v 1.1 2004/07/19 19:14:01 drh Exp $
# $Id: join4.test,v 1.2 2004/07/19 19:28:44 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -43,7 +43,6 @@ do_test join4-1.3 {
execsql {
create index i2 on t2(z);
}
btree_breakpoint
execsql {
select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok'
}