mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
When WCOs are present, disable direct foreign table modification.
If the user modifies a view that has CHECK OPTIONs and this gets translated into a modification to an underlying relation which happens to be a foreign table, the check options should be enforced. In the normal code path, that was happening properly, but it was not working properly for "direct" modification because the whole operation gets pushed to the remote side in that case and we never have an option to enforce the constraint against individual tuples. Fix by disabling direct modification when there is a need to enforce CHECK OPTIONs. Etsuro Fujita, reviewed by Kyotaro Horiguchi and by me. Discussion: http://postgr.es/m/f8a48f54-6f02-9c8a-5250-9791603171ee@lab.ntt.co.jp
This commit is contained in:
@ -842,6 +842,30 @@ INSERT INTO ft1(c1, c2) VALUES(1111, 2);
|
||||
UPDATE ft1 SET c2 = c2 + 1 WHERE c1 = 1;
|
||||
ALTER FOREIGN TABLE ft1 DROP CONSTRAINT ft1_c2negative;
|
||||
|
||||
-- ===================================================================
|
||||
-- test WITH CHECK OPTION constraints
|
||||
-- ===================================================================
|
||||
|
||||
CREATE TABLE base_tbl (a int, b int);
|
||||
CREATE FOREIGN TABLE foreign_tbl (a int, b int)
|
||||
SERVER loopback OPTIONS(table_name 'base_tbl');
|
||||
CREATE VIEW rw_view AS SELECT * FROM foreign_tbl
|
||||
WHERE a < b WITH CHECK OPTION;
|
||||
\d+ rw_view
|
||||
|
||||
INSERT INTO rw_view VALUES (0, 10); -- ok
|
||||
INSERT INTO rw_view VALUES (10, 0); -- should fail
|
||||
EXPLAIN (VERBOSE, COSTS OFF)
|
||||
UPDATE rw_view SET b = 20 WHERE a = 0; -- not pushed down
|
||||
UPDATE rw_view SET b = 20 WHERE a = 0; -- ok
|
||||
EXPLAIN (VERBOSE, COSTS OFF)
|
||||
UPDATE rw_view SET b = -20 WHERE a = 0; -- not pushed down
|
||||
UPDATE rw_view SET b = -20 WHERE a = 0; -- should fail
|
||||
SELECT * FROM foreign_tbl;
|
||||
|
||||
DROP FOREIGN TABLE foreign_tbl CASCADE;
|
||||
DROP TABLE base_tbl;
|
||||
|
||||
-- ===================================================================
|
||||
-- test serial columns (ie, sequence-based defaults)
|
||||
-- ===================================================================
|
||||
|
Reference in New Issue
Block a user