* Reinstate ftlongword support, accidentally removed. Fixes issue

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
if AField^.flags and AUTO_INCREMENT_FLAG <> 0 then
NewType := ftAutoInc
else if AField^.flags and UNSIGNED_FLAG <> 0 then
NewType := ftLongWord
else
NewType := ftInteger;
end;