sl@0
|
1 |
# 2007 Aug 29
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
#
|
sl@0
|
12 |
# This test script checks that tickets #2784 and #2789 have been fixed.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: mallocE.test,v 1.3 2008/02/18 22:24:58 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
source $testdir/malloc_common.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# Only run these tests if memory debugging is turned on.
|
sl@0
|
21 |
#
|
sl@0
|
22 |
if {!$MEMDEBUG} {
|
sl@0
|
23 |
puts "Skipping mallocE tests: not compiled with -DSQLITE_MEMDEBUG..."
|
sl@0
|
24 |
finish_test
|
sl@0
|
25 |
return
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
# ticket #2784
|
sl@0
|
29 |
#
|
sl@0
|
30 |
set PREP {
|
sl@0
|
31 |
PRAGMA page_size = 1024;
|
sl@0
|
32 |
CREATE TABLE t1(a, b, c);
|
sl@0
|
33 |
CREATE TABLE t2(x, y, z);
|
sl@0
|
34 |
}
|
sl@0
|
35 |
do_malloc_test mallocE-1 -sqlprep $PREP -sqlbody {
|
sl@0
|
36 |
SELECT p, q FROM (SELECT a+b AS p, b+c AS q FROM t1, t2 WHERE c>5)
|
sl@0
|
37 |
LEFT JOIN t2 ON p=x;
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
# Ticket #2789
|
sl@0
|
41 |
#
|
sl@0
|
42 |
do_malloc_test mallocE-2 -sqlprep $PREP -sqlbody {
|
sl@0
|
43 |
SELECT x, y2 FROM (SELECT a+b AS x, b+c AS y2 FROM t1, t2 WHERE c>5)
|
sl@0
|
44 |
LEFT JOIN t2 USING(x) WHERE y2>11;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
finish_test
|