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

Fix harmless compiler warnings. Improve the independence of some TCL tests.

FossilOrigin-Name: 1a038242dc6c0cab97dd9375acfce62aa1c386debc36aaed388d366b87ddd931
This commit is contained in:
drh
2021-10-22 11:17:29 +00:00
parent 95888784ef
commit dcf10a1a4b
7 changed files with 27 additions and 22 deletions

View File

@ -39,6 +39,7 @@ proc column_name_list {db tbl} {
}
return $lCol
}
unset -nocomplain res
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
@ -792,6 +793,7 @@ do_execsql_test 3.0 {
INSERT INTO x1 VALUES(4, 4, 4);
}
do_test 3.1 {
unset -nocomplain res
set res [list]
db eval { SELECT * FROM x1 } {
lappend res $a $b $c
@ -1579,4 +1581,3 @@ execsql ROLLBACK
finish_test