From 564007f69efb810d0dc2123a8080037810283fff Mon Sep 17 00:00:00 2001 From: glyn Date: Wed, 5 Apr 2017 10:49:11 +0100 Subject: [PATCH] Ensure documentation file name is not ambiguous --- Makefile | 2 +- docs/table_log_pl.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 docs/table_log_pl.md diff --git a/Makefile b/Makefile index 0212d5a..f4a25e6 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ EXTENSION = table_log_pl DATA = $(wildcard sql/*--*.sql) -DOCS = README.md +DOCS = $(wildcard docs/*.md) PG_CONFIG = pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) diff --git a/docs/table_log_pl.md b/docs/table_log_pl.md new file mode 100644 index 0000000..219fa7a --- /dev/null +++ b/docs/table_log_pl.md @@ -0,0 +1,15 @@ +table_log_pl +=========== + +Attempt at pl/pgsql drop-in replacement for the dated table_log C extension +AKA pg Table Audit / PostgreSQL Table Log / tablelog by Andreas Scherbaum: + http://www.postgresql.org/ftp/projects/pgFoundry/tablelog/tablelog/ + http://github.com/andreasscherbaum/table_log + +Naturally this is slower in pl/pgsql than C, and a slightly more up to date +version of the original C extension can also be found here: + https://github.com/glynastill/pg_table_audit + +There are now many better ways to audit DML, using json types or advanced +extensions like pgaudit, however if for some reason you're stuck with +table_log this may help. -- 2.39.2