Eli Mesika has uploaded a new change for review.

Change subject: core: Adding job with auto_cleared false...
......................................................................

core: Adding job with auto_cleared false...

Adding job with auto_cleared false, not working correct

v_is_auto_cleared parameter was not sent to the InsertJob SP.
Adding the required parameter.

Change-Id: I083337ae70fa41df04436fd4aec6ea711b8e410a
Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1006762
Signed-off-by: Eli Mesika <emes...@redhat.com>
---
M packaging/dbscripts/job_sp.sql
1 file changed, 6 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/44/19144/1

diff --git a/packaging/dbscripts/job_sp.sql b/packaging/dbscripts/job_sp.sql
index 4345614..2f13bb3 100644
--- a/packaging/dbscripts/job_sp.sql
+++ b/packaging/dbscripts/job_sp.sql
@@ -12,7 +12,8 @@
     v_end_time TIMESTAMP WITH TIME ZONE,
     v_last_update_time TIMESTAMP WITH TIME ZONE,
     v_correlation_id VARCHAR(50),
-    v_is_external boolean)
+    v_is_external boolean,
+    v_is_auto_cleared boolean)
 RETURNS VOID
 AS $procedure$
 BEGIN
@@ -27,7 +28,8 @@
         end_time,
         last_update_time,
         correlation_id,
-        is_external)
+        is_external,
+        is_auto_cleared)
     VALUES (
         v_job_id,
         v_action_type,
@@ -39,7 +41,8 @@
         v_end_time,
         v_last_update_time,
         v_correlation_id,
-        v_is_external);
+        v_is_external,
+        v_is_auto_cleared);
 END; $procedure$
 LANGUAGE plpgsql;
 


-- 
To view, visit http://gerrit.ovirt.org/19144
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I083337ae70fa41df04436fd4aec6ea711b8e410a
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Eli Mesika <emes...@redhat.com>
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to