File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 33MODULE_big = pg_query_state
44OBJS = pg_query_state.o signal_handler.o $(WIN32RES )
55EXTENSION = 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
89PGFILEDESC = "pg_query_state - facility to track progress of plan execution"
910
1011EXTRA_CLEAN = ./isolation_output
@@ -20,6 +21,9 @@ include $(top_builddir)/src/Makefile.global
2021include $(top_srcdir ) /contrib/contrib-global.mk
2122endif
2223
24+ $(EXTENSION ) --$(EXTVERSION ) .sql : init.sql
25+ cat $^ > $@
26+
2327check : isolationcheck
2428
2529ISOLATIONCHECKS =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 11# pg_query_state extension
22comment = 'tool for inspection query progress'
3- default_version = '1.0 '
3+ default_version = '1.1 '
44module_pathname = '$libdir/pg_query_state'
55relocatable = true
You can’t perform that action at this time.
0 commit comments