Skip to content

Commit cb49846

Browse files
committed
Fix _func system space clean
Before this commit, if there are a registered function, clean() function fails when pretest_clean option is enabled in suite.ini.
1 parent 1aeb35b commit cb49846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pretest_clean.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ local function clean()
6767
return name
6868
end):filter(function(name)
6969
return not allowed_funcs[name]
70-
end):each(function(tuple)
70+
end):each(function(name)
7171
box.schema.func.drop(name)
7272
end)
7373

0 commit comments

Comments
 (0)