Eli Mesika has uploaded a new change for review. Change subject: core: fixing a broken view ......................................................................
core: fixing a broken view this patch fixes a broken view resulted from changes of the following commit : 5ca1ec0337d921f1057321da2688ad2a014b8ff A comma separator was missing between view fields. Change-Id: Id022f7f82b69e2af98713b2767a4dc1edf096a8e Signed-off-by: Eli Mesika <[email protected]> --- M backend/manager/dbscripts/create_views.sql 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/45/11945/1 diff --git a/backend/manager/dbscripts/create_views.sql b/backend/manager/dbscripts/create_views.sql index 71a6444..3e4732e 100644 --- a/backend/manager/dbscripts/create_views.sql +++ b/backend/manager/dbscripts/create_views.sql @@ -34,7 +34,7 @@ -- TODO: Change code to treat disks values directly instead of through this view. SELECT images.image_guid as image_guid, - storage_domain_static_view.storage_name as storage_name + storage_domain_static_view.storage_name as storage_name, storage_domain_static_view.storage as storage_path, storage_domain_static_view.storage_pool_id as storage_pool_id, images.creation_date as creation_date, -- To view, visit http://gerrit.ovirt.org/11945 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id022f7f82b69e2af98713b2767a4dc1edf096a8e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Eli Mesika <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
