Advertise select query param

We seem to have missed this in the $select review.  Similar to other
query params that have been turned on, advertise our support in
ServiceRoot.

Tested:
Redfish query_parameters usecase checker passes.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I35ac52f745f813cc1f0ecfcae8759ae6a8fe3dee
diff --git a/redfish-core/lib/service_root.hpp b/redfish-core/lib/service_root.hpp
index 4afd650..3b533d4 100644
--- a/redfish-core/lib/service_root.hpp
+++ b/redfish-core/lib/service_root.hpp
@@ -95,7 +95,7 @@
         bmcwebInsecureEnableQueryParams;
     protocolFeatures["FilterQuery"] = false;
     protocolFeatures["OnlyMemberQuery"] = bmcwebInsecureEnableQueryParams;
-    protocolFeatures["SelectQuery"] = false;
+    protocolFeatures["SelectQuery"] = bmcwebInsecureEnableQueryParams;
     protocolFeatures["DeepOperations"]["DeepPOST"] = false;
     protocolFeatures["DeepOperations"]["DeepPATCH"] = false;
 }