0

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

1 Answers1

1

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

Laurenz Albe
  • 209,280
  • 17
  • 206
  • 263