Skip to content

Commit 690a39e

Browse files
FE: fix adding estimated rows to udf if the function returns a set
1 parent 44543c6 commit 690a39e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forward_engineering/ddlProvider/ddlHelpers/functionHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module.exports = ({ _, templates, assignTemplates, getFunctionArguments, getName
6767
}
6868
};
6969
const getExecutionRows = (value, udf) => {
70-
if (!value || udf.functionReturnsSetOf) {
70+
if (!value || !udf.functionReturnsSetOf) {
7171
return '';
7272
}
7373

0 commit comments

Comments
 (0)