File tree 4 files changed +12
-3
lines changed
4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 3
3
MODULE_big = pg_query_state
4
4
OBJS = pg_query_state.o signal_handler.o $(WIN32RES )
5
5
EXTENSION = pg_query_state
6
- EXTVERSION = 1.0
7
- DATA = $(EXTENSION ) --$(EXTVERSION ) .sql
6
+ EXTVERSION = 1.1
7
+ DATA = pg_query_state--1.0--1.1.sql
8
+ DATA_built = $(EXTENSION ) --$(EXTVERSION ) .sql
8
9
PGFILEDESC = "pg_query_state - facility to track progress of plan execution"
9
10
10
11
EXTRA_CLEAN = ./isolation_output
@@ -20,6 +21,9 @@ include $(top_builddir)/src/Makefile.global
20
21
include $(top_srcdir ) /contrib/contrib-global.mk
21
22
endif
22
23
24
+ $(EXTENSION ) --$(EXTVERSION ) .sql : init.sql
25
+ cat $^ > $@
26
+
23
27
check : isolationcheck
24
28
25
29
ISOLATIONCHECKS =corner_cases
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ -- complain if script is sourced in psql, rather than via CREATE EXTENSION
2
+ \echo Use " ALTER EXTENSION pg_query_state UPDATE TO '1.1'" to load this file. \quit
3
+
4
+ DROP FUNCTION IF EXISTS executor_step(pid integer );
5
+ DROP FUNCTION IF EXISTS executor_continue(pid integer );
Original file line number Diff line number Diff line change 1
1
# pg_query_state extension
2
2
comment = 'tool for inspection query progress'
3
- default_version = '1.0 '
3
+ default_version = '1.1 '
4
4
module_pathname = '$libdir/pg_query_state'
5
5
relocatable = true
You can’t perform that action at this time.
0 commit comments