aboutsummaryrefslogtreecommitdiff
path: root/test/progress.test
diff options
context:
space:
mode:
authordan <dan@noemail.net>2013-08-21 07:25:03 +0000
committerdan <dan@noemail.net>2013-08-21 07:25:03 +0000
commit22c745a9c958ee24832ff2bf7d1764db2223ccd1 (patch)
tree73fa8d8faeb88d5864ea2f17086257ed78e3ff00 /test/progress.test
parentc3c16cbd61f44e2847b5d456aa8ef527ebcdda0c (diff)
downloadsqlite-22c745a9c958ee24832ff2bf7d1764db2223ccd1.tar.gz
sqlite-22c745a9c958ee24832ff2bf7d1764db2223ccd1.zip
Fix a minor problem in progress.test. No code changes.
FossilOrigin-Name: a95ae93b32a9ad2ae017124ed0881802c3c741c0
Diffstat (limited to 'test/progress.test')
-rw-r--r--test/progress.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/progress.test b/test/progress.test
index 381f4826c..993426aa2 100644
--- a/test/progress.test
+++ b/test/progress.test
@@ -164,10 +164,12 @@ do_test progress-1.7 {
}
set ::res [list]
+ explain {SELECT a, b, c FROM abc}
db eval {SELECT a, b, c FROM abc} {
lappend ::res $a $b $c
db progress 5 "expr 1"
catch {db eval {SELECT a, b, c FROM abc} { }} msg
+ db progress 5 "expr 0"
lappend ::res $msg
}