Closed RoxanaMariaNeagu closed 1 year ago
The verify_logic_values method need to be updated to include long type values as well as int:
-from:
if not isinstance(value, int):
-to:
if not isinstance(value, (int, long)):
This is done to accomodate changes needed due to the move to bigint.
The verify_logic_values method need to be updated to include long type values as well as int:
-from:
if not isinstance(value, int):
-to:
if not isinstance(value, (int, long)):
This is done to accomodate changes needed due to the move to bigint.