NOCOMPRESS appearing in oracle 19c for range partition
We are currently migrating from Oracle 12c to 19c and there are some tests which compares the ddl obtained after performing range partitioning. Output is obtained running by dbms_metadata.get_ddl() as given below:
select dbms_metadata.get_ddl('INDEX', 'DUMMY_INDEX') from dual;
Difference that can be seen between 12c and 19c ddl's is a NOCOMPRESS flag appearing for 19c like this
(PARTITION "INITIAL_PARTITION" NOCOMPRESS
PCTFREE 10 INITRANS 2 MAXTRANS 255 LOGGING
STORAGE(.....);
Wondering would it have any impact ?