Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
#1464 [API] Procedure - Quotes fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThuF committed Mar 25, 2022
1 parent 36b8a2e commit 1207137
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ exports.getProcedureParameters = function (connection, procedureName) {
})
}
parameters.filter(e => e.isTableType).forEach(e => {
e.temporaryTableName = `#TEMP_TABLE_${e.parameterTypeName}`;
e.temporaryTableName = `"#TEMP_TABLE_${e.parameterTypeName}"`;
e.temporaryTableType = `"${e.parameterTypeSchema}"."${e.parameterTypeName}"`;
});
return parameters;
Expand Down

0 comments on commit 1207137

Please sign in to comment.