mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix the memory leak introduced by check-in (725). (CVS 726)
FossilOrigin-Name: b957dafc26383af514795df18bc7b8f367c9bd21
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
# This file implements regression tests for SQLite library. The
|
||||
# focus of this file is testing VIEW statements.
|
||||
#
|
||||
# $Id: view.test,v 1.9 2002/08/24 18:24:57 drh Exp $
|
||||
# $Id: view.test,v 1.10 2002/08/25 18:29:16 drh Exp $
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
|
||||
@ -271,7 +271,6 @@ do_test view-8.1 {
|
||||
SELECT * FROM v6 ORDER BY xyz;
|
||||
}
|
||||
} {7 2 13 5 19 8 27 12}
|
||||
if 0 {
|
||||
do_test view-8.2 {
|
||||
db close
|
||||
sqlite db test.db
|
||||
@ -285,6 +284,7 @@ do_test view-8.3 {
|
||||
SELECT * FROM v7 ORDER BY a;
|
||||
}
|
||||
} {9 18 27 39}
|
||||
if 0 {
|
||||
do_test view-8.4 {
|
||||
execsql { PRAGMA vdbe_trace=on;
|
||||
CREATE VIEW v8 AS SELECT max(cnt) FROM
|
||||
|
Reference in New Issue
Block a user