]> git.8kb.co.uk Git - postgresql/table_log_pl/commitdiff
Ensure documentation file name is not ambiguous master
authorglyn <glyn@8kb.co.uk>
Wed, 5 Apr 2017 09:49:11 +0000 (10:49 +0100)
committerglyn <glyn@8kb.co.uk>
Wed, 5 Apr 2017 09:49:11 +0000 (10:49 +0100)
Makefile
docs/table_log_pl.md [new file with mode: 0644]

index 0212d5a5e0cc6210ddcd9cda43da389cbff9b368..f4a25e68f2827ec76b6ecac8533ce976b0777cd3 100644 (file)
--- 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 (file)
index 0000000..219fa7a
--- /dev/null
@@ -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.