List all external tables in Greenplum or Deepgreen

SELECT
   nspname,
   relname        
FROM
   pg_exttable a,
   pg_class b,
   pg_namespace c
WHERE
   a.reloid = b.oid
   and b.relnamespace = c.oid
;

Theme by Danetsoft and Danang Probo Sayekti inspired by Maksimer