We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent0c6e36a commit154e5f5Copy full SHA for 154e5f5
.travis.yml
@@ -33,13 +33,11 @@ env:
33
-PG_VERSION=13
34
-PG_VERSION=12 LEVEL=hardcore USE_TPCDS=1
35
-PG_VERSION=12
36
- -PG_VERSION=11
37
-PG_VERSION=10
38
-PG_VERSION=9.6
39
40
matrix:
41
allow_failures:
42
-env:PG_VERSION=13 LEVEL=hardcore USE_TPCDS=1
43
- -env:PG_VERSION=11
44
-env:PG_VERSION=10
45
-env:PG_VERSION=9.6
Makefile
@@ -13,14 +13,8 @@ EXTRA_CLEAN = ./isolation_output $(EXTENSION)--$(EXTVERSION).sql \
13
Dockerfile ./tests/*.pyc ./tmp_stress
14
15
ISOLATION = corner_cases
16
-#
17
-# PG11 doesn't support ISOLATION_OPTS variable. We have to use
18
-# "CREATE/DROP EXTENTION" command in spec.
19
20
-# One day, when we'll get rid of PG11, it will be possible to uncomment this
21
-# variable and remove "CREATE EXTENTION" from spec.
22
23
-# ISOLATION_OPTS = --load-extension=pg_query_state
+
+ISOLATION_OPTS = --load-extension=pg_query_state
24
25
ifdefUSE_PGXS
26
PG_CONFIG ?= pg_config
README.md
@@ -20,7 +20,7 @@ To install `pg_query_state`, please apply corresponding patches `custom_signal_(
To do this, run the following commands from the postgresql directory:
```
patch -p1 < path_to_pg_query_state_folder/patches/runtime_explain_(PG_VERSION).patch
-patch -p1 < path_to_pg_query_state_folder/patches/custom_signal_(PG_VERSION).patch
+patch -p1 < path_to_pg_query_state_folder/patches/custom_signals_(PG_VERSION).patch
Then execute this in the module's directory:
specs/corner_cases.spec
@@ -1,6 +1,5 @@
1
setup
2
{
3
-CREATEEXTENSIONpg_query_state;
4
CREATEROLEalice;
5
CREATEROLEbob;
6
CREATEROLEsuperSUPERUSER;
@@ -31,7 +30,6 @@ teardown
31
30
DROPROLEsuper;
32
DROPROLEbob;
DROPROLEalice;
-DROPEXTENSIONpg_query_state;
}
session"s1"