* Added support for JSON fields, patch from Silvio Clecio (Bug ID 27606)

git-svn-id: trunk@30121 -
This commit is contained in:
michael 2015-03-07 15:42:13 +00:00
parent 68a2e3cd74
commit f2b2310856

View File

@ -176,6 +176,7 @@ const Oid_Bool = 16;
Oid_Int8 = 20;
Oid_int2 = 21;
Oid_Int4 = 23;
Oid_JSON = 114;
Oid_Float4 = 700;
Oid_Money = 790;
Oid_Float8 = 701;
@ -751,7 +752,7 @@ begin
if size > MaxSmallint then size := MaxSmallint;
end;
// Oid_text : Result := ftstring;
Oid_text : Result := ftMemo;
Oid_text,Oid_JSON : Result := ftMemo;
Oid_Bytea : Result := ftBlob;
Oid_oid : Result := ftInteger;
Oid_int8 : Result := ftLargeInt;