Github user interma commented on a diff in the pull request:
https://github.com/apache/incubator-hawq/pull/1094#discussion_r96569405
--- Diff: src/backend/catalog/namespace.c ---
@@ -1933,7 +1933,12 @@ recomputeNamespacePath(void)
* Do nothing if path is already valid.
*/
if (namespaceSearchPathValid && namespaceUser == roleid)
- return;
+ {
+ if (!enable_ranger)
+ return;
+ else
+ elog(DEBUG3, "recompute search_path[%s] when
enable_ranger", namespace_search_path);
--- End diff --
This log is for the possible performance lack evaluating in future.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---