mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Auto-uppercase data types of routine parameters. Fixes issue #3497.
This commit is contained in:
@ -360,7 +360,7 @@ begin
|
||||
Param := Parameters[Node.Index];
|
||||
case Column of
|
||||
1: Param.Name := NewText;
|
||||
2: Param.Datatype := NewText;
|
||||
2: Param.Datatype := UpperCase(NewText);
|
||||
3: Param.Context := NewText;
|
||||
end;
|
||||
Modification(Sender);
|
||||
|
Reference in New Issue
Block a user