* Fix bug #33869, wrong assignment in CopyFromDataset for largeint fields

git-svn-id: trunk@39237 -
This commit is contained in:
michael 2018-06-17 10:08:26 +00:00
parent 3aff9d6735
commit e8f74fdbdb

View File

@ -1574,7 +1574,7 @@ begin
ftBoolean : F1.AsBoolean:=F2.AsBoolean;
ftFloat : F1.AsFloat:=F2.AsFloat;
ftAutoInc,
ftLargeInt : F1.AsInteger:=F2.AsInteger;
ftLargeInt : F1.AsLargeInt:=F2.AsLargeInt;
ftSmallInt : F1.AsInteger:=F2.AsInteger;
ftInteger : F1.AsInteger:=F2.AsInteger;
ftDate : F1.AsDateTime:=F2.AsDateTime;