0

I am writing the plperl script function for my trigger execution. When INSERT / UPDATE happens ,my plperl script will run , in that I am dynamically forming some query based on event I receive. I wanted to print it in terminal when I do insert/update. But it does not happen. Tell me which way i can print it.?

Pavunkumar
  • 5,147
  • 14
  • 43
  • 69

1 Answers1

2

Use the elog function to raise notices. You can also use it to raise full errors.

Richard Huxton
  • 21,516
  • 3
  • 39
  • 51