dmencu 1.0.14 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
CREATE OR REPLACE FUNCTION regenerar_accion_cumple_condicion_trg()
|
|
5
5
|
RETURNS trigger
|
|
6
|
-
LANGUAGE plpgsql
|
|
6
|
+
LANGUAGE plpgsql
|
|
7
|
+
SECURITY DEFINER AS
|
|
7
8
|
$CREATOR$
|
|
8
9
|
DECLARE
|
|
9
10
|
xcase_condiciones TEXT;
|
|
@@ -66,4 +67,4 @@ update estados_acciones ea
|
|
|
66
67
|
where ea.operativo= aux.operativo and
|
|
67
68
|
ea.estado=aux.estado and
|
|
68
69
|
ea.eaccion=aux.eaccion and
|
|
69
|
-
ea.estado_destino=aux.estado_destino
|
|
70
|
+
ea.estado_destino=aux.estado_destino;
|
package/package.json
CHANGED