ODBC test wasn't closing cursor

This resulted in an error deleting table the test referenced.
This commit is contained in:
scott 2018-11-26 17:33:13 +00:00
parent c7d8943932
commit 7e3df96779

View File

@ -26,6 +26,8 @@ table.insert (EXTENSIONS, function ()
assert2 ("ABCDE", row.f2, "Wrong string representation")
assert2 (true, row.f3, "Wrong bit representation")
cur:close()
-- Drops the table
assert2 (DROP_TABLE_RETURN_VALUE, CONN:execute("drop table test_dt") )
assert2 (DROP_TABLE_RETURN_VALUE, CONN:execute("drop table test_dt") )
end)