I am using cDOT Resize volume command to resize a volume by specifying a increment size and not the absolute size.
resizeVolume is my Command Variable.
In the other parameters tab, for attribute TargetSize I am having an expression as follows
resizeVolume.size_mb+$IncrementSizeInGB*1024
The above expresion is getting evalueated as string and getting concatenated and not added as integers.
So if my resizeVolume.size_mb is 1024 which is 1GB and my $IncrementSizeInGB is 50GB then the result I get in the execution plan is
102451200 which is (1024+50*1024) 102551200
Am I missing something ? How to get this as addition and not concatenation
Regards
adai