Doron Fediuck has uploaded a new change for review. Change subject: DB: Fix Network QoS DAO ......................................................................
DB: Fix Network QoS DAO With the introduction of the new dao framework, some methods should comply to the expected naming conventions. This patch fixes the GetAllFrom which had a different name. Change-Id: I7f9480614a0b9a9705c57f82e927e7bfb1ebec2b Signed-off-by: Doron Fediuck <[email protected]> --- M packaging/dbscripts/network_qos_sp.sql 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/53/16853/1 diff --git a/packaging/dbscripts/network_qos_sp.sql b/packaging/dbscripts/network_qos_sp.sql index 86a3b97..14ca776 100644 --- a/packaging/dbscripts/network_qos_sp.sql +++ b/packaging/dbscripts/network_qos_sp.sql @@ -50,7 +50,7 @@ -Create or replace FUNCTION GetAllNetworkQos() RETURNS SETOF network_qos +Create or replace FUNCTION GetAllFromNetworkQoss() RETURNS SETOF network_qos AS $procedure$ BEGIN RETURN QUERY SELECT * @@ -76,4 +76,4 @@ FROM network_qos WHERE storage_pool_id = v_storage_pool_id; END; $procedure$ -LANGUAGE plpgsql; \ No newline at end of file +LANGUAGE plpgsql; -- To view, visit http://gerrit.ovirt.org/16853 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I7f9480614a0b9a9705c57f82e927e7bfb1ebec2b Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Doron Fediuck <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
