Fix bug #1872643 "Interface: UNSUPPORTED default value for GEOMETRY field"

Error message: <spatial data type> can't have a default value.
Solution:  I tried every type of this family data type and found that they needs the flag HasDefault as False.
This commit is contained in:
Francisco Ernesto Teixeira
2008-01-23 21:22:00 +00:00
parent f53ea37647
commit a6a53de8b1

View File

@ -399,7 +399,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpLINESTRING;
@ -409,7 +409,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpPOLYGON;
@ -419,7 +419,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpGEOMETRY;
@ -429,7 +429,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpMULTIPOINT;
@ -439,7 +439,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpMULTILINESTRING;
@ -449,7 +449,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpMULTIPOLYGON;
@ -459,7 +459,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
),
(
Index: tpGEOMETRYCOLLECTION;
@ -469,7 +469,7 @@ var
HasUnsigned: False;
HasZerofill: False;
HasBinary: False;
HasDefault: True;
HasDefault: False;
)
);