Merge branch 'cassandra-3.0' into cassandra-3.X

This commit is contained in:
Sam Tunnicliffe 2016-10-13 17:49:14 +01:00
commit 771a1a2fa2
2 changed files with 7 additions and 0 deletions

View File

@ -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)

View File

@ -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));
}
}