[
https://issues.apache.org/jira/browse/CASSANDRA-10741?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15022250#comment-15022250
]
T Jake Luciani commented on CASSANDRA-10741:
--------------------------------------------
You removed this line which seems unrelated. Was that intentional?
https://github.com/snazy/cassandra/commit/b5652194c0099dc300646c8c87aefb2b71d90b2e#diff-46167493f817c3a3c5ee98461be23c0bL112
> Unable to create a function with argument of type Inet
> ------------------------------------------------------
>
> Key: CASSANDRA-10741
> URL: https://issues.apache.org/jira/browse/CASSANDRA-10741
> Project: Cassandra
> Issue Type: Bug
> Components: CQL
> Reporter: dan jatnieks
> Assignee: Robert Stupp
> Fix For: 3.0.x
>
>
> We are unable to create a function with an argument of type {{inet}} using
> 3.0.
> This works in 2.2, but fails in 3.0
> {noformat}
> CREATE OR REPLACE FUNCTION test.f2 (p1 inet)
> CALLED ON NULL INPUT RETURNS int LANGUAGE java AS 'return 2;';
> {noformat}
> From cqlsh:
> {noformat}
> 05:14 PM:~/projects/cassandra-3.0$ ./bin/cqlsh
> Connected to Test Cluster at 127.0.0.1:9042.
> [cqlsh 5.0.1 | Cassandra 3.0.0-SNAPSHOT | CQL spec 3.3.1 | Native protocol v4]
> Use HELP for help.
> cqlsh> CREATE OR REPLACE FUNCTION test.f2 (p1 inet)
> ... CALLED ON NULL INPUT RETURNS int LANGUAGE java AS 'return 2;';
> InvalidRequest: code=2200 [Invalid query] message="Could not compile function
> 'test.f2' from Java source:
> org.apache.cassandra.exceptions.InvalidRequestException: Java source
> compilation failed:
> GENERATED SOURCE ERROR: line 20 (in generated source): java.net.InetAddress
> cannot be resolved to a type
> GENERATED SOURCE ERROR: line 25 (in generated source): java.net.InetAddress
> cannot be resolved to a type
> generated source:
> package org.apache.cassandra.cql3.udf.gen.ptest2ef2_4746343_7;
> import java.nio.ByteBuffer;
> import java.util.List;
> import org.apache.cassandra.cql3.functions.JavaUDF;
> import com.datastax.driver.core.DataType;
> public final class Ctest2ef2_12216880_8 extends JavaUDF
> {
> public Ctest2ef2_12216880_8(DataType returnDataType, DataType[]
> argDataTypes)
> {
> super(returnDataType, argDataTypes);
> }
> protected ByteBuffer executeImpl(int protocolVersion, List<ByteBuffer>
> params)
> {
> Integer result = xtest2ef2_16165915_9(
> (java.net.InetAddress) super.compose(protocolVersion, 0,
> params.get(0))
> );
> return super.decompose(protocolVersion, result);
> }
> private Integer xtest2ef2_16165915_9(java.net.InetAddress p1)
> {
> return 2;
> }
> }
> "
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)