Repository: cassandra Updated Branches: refs/heads/trunk 19b7d56fe -> 9c9fa1498
Give read access to system.schema_usertypes to all authenticated users patch by Mike Adamson; reviewed by Aleksey Yeschenko for CASSANDRA-7578 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/3d2da798 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/3d2da798 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/3d2da798 Branch: refs/heads/trunk Commit: 3d2da7987e3a6d0f1e088af9c661068335cc9f67 Parents: 3b14f6a Author: Mike Adamson <[email protected]> Authored: Mon Jul 21 14:36:01 2014 +0100 Committer: Aleksey Yeschenko <[email protected]> Committed: Tue Jul 22 01:27:22 2014 +0300 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ src/java/org/apache/cassandra/service/ClientState.java | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/3d2da798/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 2aa2efa..f05c98e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,8 @@ * Configurable client timeout for cqlsh (CASSANDRA-7516) * Include snippet of CQL query near syntax error in messages (CASSANDRA-7111) * Fix native protocol drop user type notification (CASSANDRA-7571) + * Give read access to system.schema_usertypes to all authenticated users + (CASSANDRA-7578) 2.1.0-rc4 http://git-wip-us.apache.org/repos/asf/cassandra/blob/3d2da798/src/java/org/apache/cassandra/service/ClientState.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/service/ClientState.java b/src/java/org/apache/cassandra/service/ClientState.java index be3b895..c0396cb 100644 --- a/src/java/org/apache/cassandra/service/ClientState.java +++ b/src/java/org/apache/cassandra/service/ClientState.java @@ -67,7 +67,8 @@ public class ClientState SystemKeyspace.PEERS_CF, SystemKeyspace.SCHEMA_KEYSPACES_CF, SystemKeyspace.SCHEMA_COLUMNFAMILIES_CF, - SystemKeyspace.SCHEMA_COLUMNS_CF }; + SystemKeyspace.SCHEMA_COLUMNS_CF, + SystemKeyspace.SCHEMA_USER_TYPES_CF}; for (String cf : cfs) READABLE_SYSTEM_RESOURCES.add(DataResource.columnFamily(Keyspace.SYSTEM_KS, cf));
