Skip to content

Commit 34862ec

Browse files
authored
Merge pull request #82 from hackolade/Fix/HCK-4304--hackolade-assignment-function-definition-in-pos
Fix/HCK-4304 hackolade assignment function definition in pos
2 parents 44543c6 + 690a39e commit 34862ec

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)