Repository: incubator-sentry Updated Branches: refs/heads/master 25d0fefb4 -> 774afb70f
filterIndexNames should return the whole indexList Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/774afb70 Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/774afb70 Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/774afb70 Branch: refs/heads/master Commit: 774afb70f8c0bd0842331048d7de0fd053ed6c79 Parents: 25d0fef Author: Sun Dapeng <s...@apache.org> Authored: Thu Nov 12 09:40:39 2015 +0800 Committer: Sun Dapeng <s...@apache.org> Committed: Thu Nov 12 09:40:39 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/774afb70/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 e8f21e5..9f33f3d 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 null; + return indexList; } @Override