1
0
Fork 0
firefox/storage/test/unit/test_bug-365166.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
635 B
JavaScript

// Testcase for bug 365166 - crash [@ strlen] calling
// mozIStorageStatement::getColumnName of a statement created with
// "PRAGMA user_version" or "PRAGMA schema_version"
function run_test() {
test("user");
test("schema");
function test(param) {
var colName = param + "_version";
var sql = "PRAGMA " + colName;
var file = getTestDB();
var conn = Services.storage.openDatabase(file);
var statement = conn.createStatement(sql);
try {
// This shouldn't crash:
Assert.equal(statement.getColumnName(0), colName);
} finally {
statement.reset();
statement.finalize();
}
}
}