mirror of
https://github.com/sqlite/sqlite.git
synced 2025-12-24 14:17:58 +03:00
Fix a problem with handling of statements containing two or more different
windows. FossilOrigin-Name: 567e09ef2a8cd84a2481117e52595bed0f3b588745a9e441aae0f87680f3a2e8
This commit is contained in:
@@ -74,7 +74,10 @@ proc execsql_float_test {tn sql} {
|
||||
set F "%.2f"
|
||||
set res [execsql $sql]
|
||||
set res2 [list]
|
||||
foreach r $res { lappend res2 [format $F $r] }
|
||||
foreach r $res {
|
||||
if {$r != ""} { set r [format $F $r] }
|
||||
lappend res2 $r
|
||||
}
|
||||
|
||||
puts $::fd "do_test $tn {"
|
||||
puts $::fd " set myres {}"
|
||||
|
||||
Reference in New Issue
Block a user