1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Sqlite3_analyzer reports an error if it runs into trouble. (CVS 3021)

FossilOrigin-Name: 388b9262281308d0a9dd16e2fb3df3425c2a491a
This commit is contained in:
drh
2006-01-24 02:19:53 +00:00
parent 5bd719351a
commit a7531c699a
3 changed files with 15 additions and 7 deletions

View File

@ -3,6 +3,8 @@
# versus how much space is unused.
#
if {[catch {
# Get the name of the database to analyze
#
#set argv $argv0
@ -799,3 +801,9 @@ mem eval {SELECT * FROM space_used} x {
puts ");"
}
puts "COMMIT;"
} err]} {
puts "ERROR: $err"
puts $errorInfo
exit 1
}