mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 20:09:25 +02:00
* Fix bug #33869, wrong assignment in CopyFromDataset for largeint fields
git-svn-id: trunk@39237 -
This commit is contained in:
parent
3aff9d6735
commit
e8f74fdbdb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user