mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.0' into cassandra-3.X
This commit is contained in:
commit
771a1a2fa2
|
|
@ -112,6 +112,7 @@ Merged from 3.0:
|
|||
* Add schema to snapshot manifest, add USING TIMESTAMP clause to ALTER TABLE statements (CASSANDRA-7190)
|
||||
* If CF has no clustering columns, any row cache is full partition cache (CASSANDRA-12499)
|
||||
Merged from 2.2:
|
||||
* Clean up permissions when a UDA is dropped (CASSANDRA-12720)
|
||||
* Limit colUpdateTimeDelta histogram updates to reasonable deltas (CASSANDRA-11117)
|
||||
* Fix leak errors and execution rejected exceptions when draining (CASSANDRA-12457)
|
||||
* Fix merkle tree depth calculation (CASSANDRA-12580)
|
||||
|
|
|
|||
|
|
@ -44,4 +44,10 @@ public class AuthMigrationListener extends MigrationListener
|
|||
DatabaseDescriptor.getAuthorizer()
|
||||
.revokeAllOn(FunctionResource.function(ksName, functionName, argTypes));
|
||||
}
|
||||
|
||||
public void onDropAggregate(String ksName, String aggregateName, List<AbstractType<?>> argTypes)
|
||||
{
|
||||
DatabaseDescriptor.getAuthorizer()
|
||||
.revokeAllOn(FunctionResource.function(ksName, aggregateName, argTypes));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue