Add Oracle 19.20 Version Redo log compatible!
Is your feature request related to a problem? Please describe.
I get error follows: ERROR 40006 file: /data/olrexports/.../1_36629_1157533071.arc - invalid database version: 320077824 I study you code find 👍 if ((compatVsn >= 0x0B200000 && compatVsn <= 0x0B200400) // 11.2.0.0 - 11.2.0.4 || (compatVsn >= 0x0C100000 && compatVsn <= 0x0C100200) // 12.1.0.0 - 12.1.0.2 || (compatVsn >= 0x0C200000 && compatVsn <= 0x0C200100) // 12.2.0.0 - 12.2.0.1 || (compatVsn >= 0x12000000 && compatVsn <= 0x120E0000) // 18.0.0.0 - 18.14.0.0 || (compatVsn >= 0x13000000 && compatVsn <= 0x13120000) // 19.0.0.0 - 19.18.0.0 || (compatVsn >= 0x15000000 && compatVsn <= 0x15080000) // 21.0.0.0 - 21.8.0.0 || (compatVsn >= 0x17000000 && compatVsn <= 0x17030000)) // 21.0.0.0 - 21.3.0.0 version = compatVsn; else { ctx->error(40006, "file: " + fileName + " - invalid database version: " + std::to_string(compatVsn)); return REDO_CODE::ERROR_BAD_DATA; } but ,My Oracle CDB 19.27's parameter complicable =19.20 (320077824 cast to HEX )
Describe the solution you'd like