This is similar to the fact that on some versions of Oracle DB there are synonyms with the names X and Y:
select owner, synonym_name, table_owner, table_name from dba_synonyms where synonym_name in ('X', 'Y');
OWNER SYNONYM_NAME TABLE_OWNER TABLE_NAME
PUBLIC X MDSYS OGC_X
PUBLIC Y MDSYS OGC_Y
source
share