mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
fix: trim away spaces around name of routine parameter silently
Refs #1369
This commit is contained in:
@@ -555,7 +555,7 @@ begin
|
||||
tmp := '';
|
||||
if ProcOrFunc = 'PROCEDURE' then
|
||||
tmp := tmp + Parameters[i].Context + ' ';
|
||||
tmp := tmp + DBObject.Connection.QuoteIdent(Parameters[i].Name) + ' ' + Parameters[i].Datatype;
|
||||
tmp := tmp + DBObject.Connection.QuoteIdent(Parameters[i].Name.Trim) + ' ' + Parameters[i].Datatype;
|
||||
Params.Add(tmp);
|
||||
end;
|
||||
if Params.Count > 0 then
|
||||
|
||||
Reference in New Issue
Block a user