Add cleanup for temp array storage
All checks were successful
Deploy datapack to dev / Build (push) Successful in 6s

This commit is contained in:
themodernhakr 2025-03-23 00:59:35 -05:00
parent d1c96735f0
commit 1345fa13c0

View File

@ -40,6 +40,7 @@ class database.benchmark {
}
function arrayTest1.clean() {
::database.test.arrayTest1.array.del();
::temp.arrayTest1.del();
}
function arrayTest1.run() {
::temp.arrayTest1 = ::database.test.arrayTest1.array;
@ -55,6 +56,7 @@ class database.benchmark {
}
}
);
::temp.arrayTest1.del();
}