Reputation: 1
I am working with postgres-xl 9.5 , it is not supporting triggers. I am trying to write trigger function by using python it should replace
BEFORE INSERT ON tbl
FOR EACH ROW EXECUTE PROCEDURE fnx()
Thanks
Upvotes: 0
Views: 727
Reputation: 247300
You cannot create a trigger in Postgres-XL, as the documentation says.
Upvotes: 1