mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 05:56:21 +00:00
This commit adds following three sql based testcases: 1) Test unique application name set by user. 2) Histogram function is working properly as desired. 3) Error on insert is shown with proper message.
70 lines
2.4 KiB
Makefile
70 lines
2.4 KiB
Makefile
# contrib/pg_stat_monitor/Makefile
|
|
|
|
MODULE_big = pg_stat_monitor
|
|
OBJS = hash_query.o guc.o pg_stat_monitor.o $(WIN32RES)
|
|
|
|
EXTENSION = pg_stat_monitor
|
|
DATA = pg_stat_monitor--1.0.sql
|
|
|
|
PGFILEDESC = "pg_stat_monitor - execution statistics of SQL statements"
|
|
|
|
LDFLAGS_SL += $(filter -lm, $(LIBS))
|
|
|
|
REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/pg_stat_monitor/pg_stat_monitor.conf --inputdir=regression
|
|
REGRESS = basic version guc counters relations database error_insert application_name application_name_unique top_query cmd_type error rows tags histogram
|
|
|
|
# Disabled because these tests require "shared_preload_libraries=pg_stat_statements",
|
|
# which typical installcheck users do not have (e.g. buildfarm clients).
|
|
# NO_INSTALLCHECK = 1
|
|
|
|
|
|
PG_CONFIG = pg_config
|
|
PG_VERSION := $(shell pg_config --version | awk {'print $$1 $$2'})
|
|
MAJOR := $(shell echo $(PG_VERSION) | sed -e 's/\.[^./]*$$//')
|
|
|
|
ifneq (,$(findstring PostgreSQL14,$(MAJOR)))
|
|
ifneq (,$(wildcard ../pg_stat_monitor--1.0.14.sql.in))
|
|
CP := $(shell cp ../pg_stat_monitor--1.0.14.sql.in ../pg_stat_monitor--1.0.sql)
|
|
endif
|
|
ifneq (,$(wildcard pg_stat_monitor--1.0.14.sql.in))
|
|
CP := $(shell cp pg_stat_monitor--1.0.14.sql.in pg_stat_monitor--1.0.sql)
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring PostgreSQL13,$(MAJOR)))
|
|
ifneq (,$(wildcard ../pg_stat_monitor--1.0.13.sql.in))
|
|
CP := $(shell cp ../pg_stat_monitor--1.0.13.sql.in ../pg_stat_monitor--1.0.sql)
|
|
endif
|
|
ifneq (,$(wildcard pg_stat_monitor--1.0.13.sql.in))
|
|
CP := $(shell cp pg_stat_monitor--1.0.13.sql.in pg_stat_monitor--1.0.sql)
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring PostgreSQL12,$(MAJOR)))
|
|
ifneq (,$(wildcard ../pg_stat_monitor--1.0.sql.in))
|
|
CP := $(shell cp ../pg_stat_monitor--1.0.sql.in ../pg_stat_monitor--1.0.sql)
|
|
endif
|
|
ifneq (,$(wildcard pg_stat_monitor--1.0.sql.in))
|
|
CP := $(shell cp pg_stat_monitor--1.0.sql.in pg_stat_monitor--1.0.sql)
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring PostgreSQL11,$(MAJOR)))
|
|
ifneq (,$(wildcard ../pg_stat_monitor--1.0.sql.in))
|
|
CP := $(shell cp ../pg_stat_monitor--1.0.sql.in ../pg_stat_monitor--1.0.sql)
|
|
endif
|
|
ifneq (,$(wildcard pg_stat_monitor--1.0.sql.in))
|
|
CP := $(shell cp pg_stat_monitor--1.0.sql.in pg_stat_monitor--1.0.sql)
|
|
endif
|
|
endif
|
|
|
|
ifdef USE_PGXS
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pg_stat_monitor
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|