1
0
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:
dan
2018-06-14 20:52:08 +00:00
parent 9a94722d48
commit 303451a8f7
6 changed files with 601 additions and 477 deletions

View File

@@ -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 {}"