When AG used parameter with length longer than 4000 ... for example in table INSTALLATION and parameter DEVICETOKEN ... table IOSVARIANT and parameter CERT_DATA (master branch).. it becomes problem because oracle has Varchar2 with max length 4000 and when parameter is longer it needs LOB ...
Changed in table INSTALLATION parameter DEVICETOKEN as VARCHAR2(4000) ... it is temporary solution .. but in IOSVARIANT parameter CERT_DATA has length 100000 and it is too large. In version 1.0.x certificate was LOB and it was ok for oracle.
Object with large length as CERT_DATA makes it impossible to support oracle.
Postgres bug that probably lead to the change of implementation: https://issues.jboss.org/browse/AGPUSH-1144
|