File tree Expand file tree Collapse file tree 4 files changed +7
-13
lines changed Expand file tree Collapse file tree 4 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 1- # pg_audit/Makefile
1+ # contrib/ pg_audit/Makefile
22
3- MODULE = pg_audit
43MODULE_big = pg_audit
5- OBJS = pg_audit.o
4+ OBJS = pg_audit.o $( WIN32RES )
65
76EXTENSION = pg_audit
7+ DATA = pg_audit--1.0.sql
8+ PGFILEDESC = "pg_audit - An audit logging extension for PostgreSQL"
9+
810REGRESS = pg_audit
9- REGRESS_OPTS =
10- DATA = pg_audit--1.0.0.sql
1111
1212ifdef USE_PGXS
1313PG_CONFIG = pg_config
Original file line number Diff line number Diff line change 1- /* pg_audit/pg_audit--1.0.0. sql */
1+ /* pg_audit/pg_audit--1.0.sql */
22
33-- complain if script is sourced in psql, rather than via CREATE EXTENSION
44\echo Use " CREATE EXTENSION pg_audit" to load this file.\quit
Original file line number Diff line number Diff line change @@ -540,12 +540,6 @@ log_audit_event(AuditEventStackItem *stackItem)
540540 class = LOG_READ ;
541541 break ;
542542
543- /* Reindex is DDL (because cluster is DDL) */
544- case T_ReindexStmt :
545- className = CLASS_DDL ;
546- class = LOG_DDL ;
547- break ;
548-
549543 /* FUNCTION statements */
550544 case T_DoStmt :
551545 className = CLASS_FUNCTION ;
Original file line number Diff line number Diff line change 11# pg_audit extension
22comment = 'provides auditing functionality'
3- default_version = '1.0.0 '
3+ default_version = '1.0'
44module_pathname = '$libdir/pg_audit'
55relocatable = true
You can’t perform that action at this time.
0 commit comments