Skip to content

Commit 95b5af8

Browse files
committedAug 28, 2019
Redo pg_extension_config_dump calls which were lost during build
1 parent f67ca99 commit 95b5af8

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed
 

‎Makefile

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# src/test/modules/pg_cron/Makefile
22

33
EXTENSION = pg_cron
4-
EXTVERSION = 1.1
4+
EXTVERSION = 1.2
55

6-
DATA_built = $(EXTENSION)--$(EXTVERSION).sql $(EXTENSION)--1.0.sql
6+
DATA_built = $(EXTENSION)--1.0.sql
77
DATA = $(wildcard $(EXTENSION)--*--*.sql)
88
REGRESS = pg_cron-test
99

@@ -22,7 +22,5 @@ PG_CONFIG = pg_config
2222
PGXS := $(shell $(PG_CONFIG) --pgxs)
2323
include $(PGXS)
2424

25-
$(EXTENSION)--1.0.sql: $(EXTENSION).sql $(EXTENSION)--0.1--1.0.sql
26-
cat $^ > $@
27-
$(EXTENSION)--1.1.sql: $(EXTENSION).sql $(EXTENSION)--1.0--1.1.sql
25+
$(EXTENSION)--1.0.sql: $(EXTENSION).sql
2826
cat $^ > $@

‎pg_cron--0.1--1.0.sql

-3
This file was deleted.

‎pg_cron--1.1--1.2.sql

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* pg_cron--1.1--1.2.sql */
2+
3+
SELECT pg_catalog.pg_extension_config_dump('cron.job', '');
4+
SELECT pg_catalog.pg_extension_config_dump('cron.jobid_seq', '');

‎pg_cron.control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
comment = 'Job scheduler for PostgreSQL'
2-
default_version = '1.1'
2+
default_version = '1.2'
33
module_pathname = '$libdir/pg_cron'
44
relocatable = false

0 commit comments

Comments
 (0)
Please sign in to comment.