Stas Rozen
Stas Rozen

Reputation: 1

Creating Trigger With pl/Python on Postgres

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

Answers (1)

Laurenz Albe
Laurenz Albe

Reputation: 247300

You cannot create a trigger in Postgres-XL, as the documentation says.

Upvotes: 1

Related Questions