Introduction

This started as a quick hack some years ago, when I broke my PostgreSQL database (must have been version 7.3 or so) so that pg_dump wouldn't dump it anymore. Plus it couldn't handle dumping say only functions from certain schema. I have since then learned how to fix my database and pg_dump got options like --schema.

But the idea of a database being able to dump itself more autonomously persisted. After all, if LISP can do it, why not Postgres with its awesome SQL power? Information is all there in the system catalogs. One just needs to decipher it.

This tool uses information schema and standard SQL as much as possible, but for any actual practical use decoding of PostgreSQL system catalogs is required. Querying pg_catalog can turn out to be quite complicated for a somewhat casual SQL user. This project attempts to collect many SQL snippets made over the years into a coherent extension.

This will hopefully help to keep relevant SQL code for these things in one place. Perhaps this can also be of some use to GUI tools builders and such in implementing "Extract DDL" functionality.

Tasks

Support for other postgres objects: - pg_amop, pg_amproc - ✔︎ extensions

Support for other missing options: - PG14 SET COMPRESSION - comments on all objects - ownership of all objects - grants on all objects - grants vs current_role (who is grantor?) - materialized view tablespace & storage parameters - table of type (not null) - SET STATISTICS on indexes - ✔︎ pg_subscription not readable by non superuser

Other: - figure out how to elegantly separate pre-data, post-data, create, alter and dcl - use ONLY when appropriate - move not nulls to constraints section - move storage setting to pre-data section - group column alters together by column name - add ddlx_alter() and ddlx_alter_column() functions - improve support for non superusers (more testing, etc) - improve dumping of comments (be quiet on NULL comments) Currently NULL comments are included, to encourage commenting. - handle dependancies for types better (use shell types) - ✔︎ do not emit ALTER OWNER for objects owned by current role - improve and add to simple tests - make some tests to test if what we output actually runs, test execute them - make some tests which compare to output of pg_dump; make utility for any sql file to compare the dump by pg_dump and ddlx. Comparison should compare actual contents, not merely text.

Options

Some options as to what and how to dump stuff might be required:

  • DROP - generate DROP statements
  • ALTER - prefer ALTER to CREATE, implies 'INE' and 'IE'
  • DCL - include DCL (GRANTS)
  • COR - use CREATE OR REPLACE where possible
  • INE - use IF NOT EXISTS where possible
  • IE - use IF EXISTS where possible
  • WRAP - wrap in BEGIN / END
  • EXT - include objects from extensions. Normally, these are omitted.
  • DEP - output objects which depend on this object too
  • DATA - add statements preserve / copy table data

These might be passed as optional second arg to extractor functions Perhaps as a text array? JSON?

Also, consider how to choose pre and post data DDL.

Perhaps there are other ways to implement some of this?

Other DDL dumping tools

psql

Command line client psql contains lots of packaged SQL for handling metadata mainly to support code completion and various \d* commands.

pg_dump

Database dump tool pg_dump contains lots of packaged SQL for handling metadata and especially considers various dependancies. Source code for main C source file is is about 20000 lines long.

pgAdmin3

PgAdmin3 DDL generation and schema handling code is an interesting mix of wxWidgets GUI toolkit (C++) and SQL. It requires GUI. Generated DDLs are database administrator friendly.

pgAdmin4

PgAdmin4 is the stuff of legends

Mailing list discussions