File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ SUBDIRS = \
50
50
tablefunc \
51
51
tcn \
52
52
test_decoding \
53
+ test_partitioning \
53
54
tsm_system_rows \
54
55
tsm_system_time \
55
56
tsearch2 \
Original file line number Diff line number Diff line change 1
1
REGRESS = partition
2
2
EXTRA_REGRESS_OPTS=--temp-config =$(top_srcdir ) /$(subdir ) /pg_pathman.add
3
-
3
+ EXTRA_INSTALL =contrib/pg_pathman
4
4
ifdef USE_PGXS
5
5
PG_CONFIG = pg_config
6
6
PGXS := $(shell $(PG_CONFIG ) --pgxs)
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ PARTITION BY RANGE(id)
57
57
);
58
58
/* Inserting should produce an error because interval hasn't been set */
59
59
INSERT INTO abc VALUES (250);
60
- ERROR: could not create new partitions for relation "abc"
60
+ ERROR: cannot find appropriate partition for key '250'
61
61
DROP TABLE abc CASCADE;
62
62
NOTICE: drop cascades to 2 other objects
63
63
/* Create hash partitioned table */
You can’t perform that action at this time.
0 commit comments