* Reinstate ftlongword support, accidentally removed. Fixes issue #41014

This commit is contained in:
Michaël Van Canneyt 2024-11-14 14:22:52 +01:00
parent db9b2a6a95
commit 8c8bef492f

View File

@ -898,6 +898,8 @@ begin
begin begin
if AField^.flags and AUTO_INCREMENT_FLAG <> 0 then if AField^.flags and AUTO_INCREMENT_FLAG <> 0 then
NewType := ftAutoInc NewType := ftAutoInc
else if AField^.flags and UNSIGNED_FLAG <> 0 then
NewType := ftLongWord
else else
NewType := ftInteger; NewType := ftInteger;
end; end;