New SQL Objects
Tables and indexes today — not everything an RDBMS can define
pgloader currently supports tables, indexes, and some constraints
(not null, unique, primary keys, foreign keys) and sequences. With
some more advanced RDBMS, that's not always enough — the main
difficulty in adding a new SQL object is deciding how to best map it
onto PostgreSQL's own feature set.
Oracle Synonyms are one example: they let tables from one schema be
used in another, because in Oracle a schema belongs to a user.
PostgreSQL doesn't have that limitation, so it doesn't need synonyms
to work around it either.