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

Fix a bug in the multi-index OR cost estimator. Remove leftover "breakpoint"

commands from test scripts. (CVS 6086)

FossilOrigin-Name: b090d5736d7eaec17a39d3133e1587b1d2a42acb
This commit is contained in:
drh
2008-12-30 17:55:00 +00:00
parent eb9441eb06
commit 04bbcd5ce9
10 changed files with 151 additions and 29 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing expressions.
#
# $Id: expr.test,v 1.65 2008/08/22 16:29:51 drh Exp $
# $Id: expr.test,v 1.66 2008/12/30 17:55:00 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -606,8 +606,6 @@ test_expr2 expr-7.60 {LIKE('_4',b)} {6}
test_expr2 expr-7.61 {GLOB('1?',a)} {10 11 12 13 14 15 16 17 18 19}
test_expr2 expr-7.62 {GLOB('1*4',b)} {10 14}
test_expr2 expr-7.63 {GLOB('*1[456]',b)} {4}
breakpoint
test_expr2 expr-7.64 {b = abs(-2)} {1}
test_expr2 expr-7.65 {b = abs(+-2)} {1}
test_expr2 expr-7.66 {b = abs(++-2)} {1}