Disclaimer: Lavoro con Andreas Fritsch allo stesso progetto.
Abbiamo risolto questo problema nel modo seguente.
Esiste un'estensione "Language" Gestione del linguaggio procedurale PL/sh per PostgreSQL codificato da Peter Eisentraut che fa esattamente ciò di cui abbiamo bisogno.
Definisci uno script di shell come questo:
CREATE or REPLACE FUNCTION test(text) RETURNS text AS '
#!/bin/bash
echo Test: $1 is working
' LANGUAGE plsh;
Questo è un esempio di una funzione trigger con alcune utili variabili di ambiente per i trigger:
CREATE or REPLACE FUNCTION TriggerTest() RETURNS trigger AS $$
#!/bin/bash
#mkdir /has/triggertest/$PLSH_TG_NAME
cd /has/triggertest
touch PLSH_TG_NAME-$PLSH_TG_NAME
touch PLSH_TG_WHEN-$PLSH_TG_WHEN
touch PLSH_TG_LEVEL-$PLSH_TG_LEVEL
touch PLSH_TG_OP-$PLSH_TG_OP
touch PLSH_TG_TABLE_NAME-$PLSH_TG_TABLE_NAME
touch PLSH_TG_TABLE_SCHEMA-$PLSH_TG_TABLE_SCHEMA
touch new-$new.x
#touch "arg-0-'$0'"
touch "arg-1-'$1'"
touch "arg-2-'$2'"
touch "arg-3-'$3'"
touch "arg-4-'$4'"
for arg do
touch "Arg is '$arg'"
done
exit 0
$$ LANGUAGE plsh;
Si crea un trigger prima dell'inserimento con la seguente istruzione SQL
CREATE TRIGGER tbefore BEFORE INSERT OR UPDATE OR DELETE ON ttest2
FOR EACH ROW EXECUTE PROCEDURE TriggerTest(new);
Spero che questo aiuti chiunque altro stia cercando una soluzione simile per il suo problema.