Repository: cassandra Updated Branches: refs/heads/trunk e3c018628 -> b6350ca7a
ninja fix CASSANDRA-8528 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/b6350ca7 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/b6350ca7 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/b6350ca7 Branch: refs/heads/trunk Commit: b6350ca7a6e533a35514647d39593742b7c881b3 Parents: e3c0186 Author: Robert Stupp <[email protected]> Authored: Sun Feb 15 20:42:14 2015 +0100 Committer: Robert Stupp <[email protected]> Committed: Sun Feb 15 20:42:14 2015 +0100 ---------------------------------------------------------------------- .../org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/b6350ca7/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java b/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java index 4bce2f0..2fb855a 100644 --- a/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java +++ b/src/java/org/apache/cassandra/cql3/functions/JavaSourceUDFFactory.java @@ -248,7 +248,7 @@ public final class JavaSourceUDFFactory // handle OutOfMemoryError and other fatals not here! " if (t instanceof VirtualMachineError)\n" + " throw (VirtualMachineError)t;\n" + - " throw org.apache.cassandra.exceptions.FunctionExecutionException.build(this, t);\n" + + " throw org.apache.cassandra.exceptions.FunctionExecutionException.create(this, t);\n" + " }\n" + "}");
