Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /*
  2. * error context callback to let us supply a call-stack traceback
  3. */
  4. static void
  5. plpgsql_exec_error_callback(void *arg)
  6. {
  7. PLpgSQL_execstate *estate = (PLpgSQL_execstate *) arg;
  8.  
  9. /* if we are doing RAISE, don't report its location */
  10. if (estate->err_text == raise_skip_msg)
  11. return;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement