mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 20:09:19 +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;
|
ftBoolean : F1.AsBoolean:=F2.AsBoolean;
|
||||||
ftFloat : F1.AsFloat:=F2.AsFloat;
|
ftFloat : F1.AsFloat:=F2.AsFloat;
|
||||||
ftAutoInc,
|
ftAutoInc,
|
||||||
ftLargeInt : F1.AsInteger:=F2.AsInteger;
|
ftLargeInt : F1.AsLargeInt:=F2.AsLargeInt;
|
||||||
ftSmallInt : F1.AsInteger:=F2.AsInteger;
|
ftSmallInt : F1.AsInteger:=F2.AsInteger;
|
||||||
ftInteger : F1.AsInteger:=F2.AsInteger;
|
ftInteger : F1.AsInteger:=F2.AsInteger;
|
||||||
ftDate : F1.AsDateTime:=F2.AsDateTime;
|
ftDate : F1.AsDateTime:=F2.AsDateTime;
|
||||||
|
Loading…
Reference in New Issue
Block a user