Skip to content

Instantly share code, notes, and snippets.

@bitdivine
Created March 9, 2016 12:43
Show Gist options
  • Select an option

  • Save bitdivine/f4e34443b3f32b675faa to your computer and use it in GitHub Desktop.

Select an option

Save bitdivine/f4e34443b3f32b675faa to your computer and use it in GitHub Desktop.
Match postgres toast tables to their originals
select tab.relname as table,toast.relname as toast from pg_class as tab join pg_class as toast on (toast.oid = tab.reltoastrelid);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment