Browse Source

fcl-db: memds: for ftLargeInt fields use AsLargeInt when copying

git-svn-id: trunk@37524 -
lacak 7 years ago
parent
commit
eef6e65730
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-db/src/memds/memds.pp

+ 1 - 1
packages/fcl-db/src/memds/memds.pp

@@ -1167,7 +1167,7 @@ begin
                   ftString   : F1.AsString:=F2.AsString;
                   ftString   : F1.AsString:=F2.AsString;
                   ftBoolean  : F1.AsBoolean:=F2.AsBoolean;
                   ftBoolean  : F1.AsBoolean:=F2.AsBoolean;
                   ftFloat    : F1.AsFloat:=F2.AsFloat;
                   ftFloat    : F1.AsFloat:=F2.AsFloat;
-                  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;