On Tue, May 12, 2015 at 7:16 AM, Alvaro Herrera <alvhe...@alvh.no-ip.org> wrote:
> Allow on-the-fly capture of DDL event details
>
> This feature lets user code inspect and take action on DDL events.
> Whenever a ddl_command_end event trigger is installed, DDL actions
> executed are saved to a list which can be inspected during execution of
> a function attached to ddl_command_end.

Buildfarm machines on Windows are complaining:
http://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=mastodon&dt=2015-05-11%2023%3A00%3A01

Visibly REGRESS and REGRESS_OPTS are messed up in the Makefile of
test_ddl_deparsing. The patch attached make tests pass correctly.
-- 
Michael
diff --git a/src/test/modules/test_ddl_deparse/Makefile b/src/test/modules/test_ddl_deparse/Makefile
index a87b691..d025b49 100644
--- a/src/test/modules/test_ddl_deparse/Makefile
+++ b/src/test/modules/test_ddl_deparse/Makefile
@@ -1,10 +1,13 @@
+# src/test/modules/test_ddl_deparse/Makefile
+
 MODULES = test_ddl_deparse
 PGFILEDESC = "test_ddl_deparse - regression testing for DDL deparsing"
 
 EXTENSION = test_ddl_deparse
 DATA = test_ddl_deparse--1.0.sql
 
-REGRESS = --schedule=$(srcdir)/regress_schedule
+REGRESS = test_ddl_deparse
+REGRESS_OPTS = --schedule=$(srcdir)/regress_schedule
 EXTRA_INSTALL = contrib/pg_stat_statements
 
 ifdef USE_PGXS
-- 
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

Reply via email to