Repository: incubator-sentry Updated Branches: refs/heads/master 774afb70f -> f0b936751
Revert: "filterIndexNames should return the whole indexList" This reverts commit 774afb70f8c0bd0842331048d7de0fd053ed6c79 Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/f0b93675 Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/f0b93675 Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/f0b93675 Branch: refs/heads/master Commit: f0b9367519f6db39ed6dcb3165b8c7fa01501422 Parents: 774afb7 Author: Sun Dapeng <[email protected]> Authored: Thu Nov 12 10:22:01 2015 +0800 Committer: Sun Dapeng <[email protected]> Committed: Thu Nov 12 10:24:17 2015 +0800 ---------------------------------------------------------------------- .../apache/sentry/binding/metastore/SentryMetaStoreFilterHook.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/f0b93675/sentry-binding/sentry-binding-hive/src/main/java/org/apache/sentry/binding/metastore/SentryMetaStoreFilterHook.java ---------------------------------------------------------------------- diff --git a/sentry-binding/sentry-binding-hive/src/main/java/org/apache/sentry/binding/metastore/SentryMetaStoreFilterHook.java b/sentry-binding/sentry-binding-hive/src/main/java/org/apache/sentry/binding/metastore/SentryMetaStoreFilterHook.java index 9f33f3d..e8f21e5 100644 --- a/sentry-binding/sentry-binding-hive/src/main/java/org/apache/sentry/binding/metastore/SentryMetaStoreFilterHook.java +++ b/sentry-binding/sentry-binding-hive/src/main/java/org/apache/sentry/binding/metastore/SentryMetaStoreFilterHook.java @@ -111,7 +111,7 @@ public class SentryMetaStoreFilterHook implements MetaStoreFilterHook { @Override public List<String> filterIndexNames(String dbName, String tblName, List<String> indexList) { - return indexList; + return null; } @Override
