mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 713286 - finalize statement in test_migration_to_3.js. r=mak.
This commit is contained in:
parent
bbd222caec
commit
f56871cc56
@ -54,6 +54,7 @@ function run_test()
|
||||
|
||||
// Check that the column exists (statement should not throw)
|
||||
stmt = dbConn.createStatement("SELECT referrer FROM moz_downloads");
|
||||
stmt.finalize();
|
||||
|
||||
// now we check the entries
|
||||
stmt = dbConn.createStatement(
|
||||
@ -70,7 +71,7 @@ function run_test()
|
||||
do_check_eq(1180493839859230, stmt.getInt64(4));
|
||||
do_check_eq(1, stmt.getInt32(5));
|
||||
do_check_true(stmt.getIsNull(6));
|
||||
stmt.reset();
|
||||
stmt.finalize();
|
||||
|
||||
cleanup();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user