Skip to content

Commit 60b7d49

Browse files
committed
Don't forget to run test_decoding tests under *nix.
Fix tests expected output messages according new pathman messages
1 parent e5cfb2d commit 60b7d49

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

contrib/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ SUBDIRS = \
5050
tablefunc \
5151
tcn \
5252
test_decoding \
53+
test_partitioning \
5354
tsm_system_rows \
5455
tsm_system_time \
5556
tsearch2 \

contrib/test_partitioning/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
REGRESS = partition
22
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/pg_pathman.add
3-
3+
EXTRA_INSTALL=contrib/pg_pathman
44
ifdef USE_PGXS
55
PG_CONFIG = pg_config
66
PGXS := $(shell $(PG_CONFIG) --pgxs)

contrib/test_partitioning/expected/partition.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ PARTITION BY RANGE(id)
5757
);
5858
/* Inserting should produce an error because interval hasn't been set */
5959
INSERT INTO abc VALUES (250);
60-
ERROR: could not create new partitions for relation "abc"
60+
ERROR: cannot find appropriate partition for key '250'
6161
DROP TABLE abc CASCADE;
6262
NOTICE: drop cascades to 2 other objects
6363
/* Create hash partitioned table */

0 commit comments

Comments
 (0)