Guest User

Untitled

a guest
Mar 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. -- Default audit trigger
  2. create or replace function sys_audit() returns trigger language plpython3u AS $$
  3. from sys import path
  4. path.append('/usr/local/lib/ez-python-library/PostgreSQL/bin');
  5.  
  6. from datetime import datetime
  7. from CommonRowFunctions import getPkValue, getRowValue, getRowChanges
  8.  
  9. keyVal = ''
  10. modData = 'unknown'
  11. ...
Add Comment
Please, Sign In to add comment