We do not support trigger and hence the regression differences.
CREATE TRIGGER trig_instead_of_insert_tbl_view
INSTEAD OF INSERT ON instead_of_insert_tbl_view
FOR EACH ROW EXECUTE PROCEDURE fun_instead_of_insert_tbl();
+ERROR: Postgres-XL does not support TRIGGER yet
+DETAIL: The feature is not currently supported
COPY instead_of_insert_tbl_view FROM stdin;
+ERROR: cannot copy to view "instead_of_insert_tbl_view"
+HINT: To enable copying to a view, provide an INSTEAD OF INSERT trigger.
SELECT * FROM instead_of_insert_tbl;
- id | name
-----+-------
- 1 | test1
-(1 row)
+ id | name
+----+------
+(0 rows)
-- clean up
DROP TABLE forcetest;