Uses of Class
org.apache.cassandra.cql3.functions.FunctionName
-
-
Uses of FunctionName in org.apache.cassandra.auth
Methods in org.apache.cassandra.auth that return FunctionName Modifier and Type Method Description FunctionNameFunctionResource. getFunctionName()Methods in org.apache.cassandra.auth with parameters of type FunctionName Modifier and Type Method Description static FunctionResourceFunctionResource. functionFromCql(FunctionName name, java.util.List<CQL3Type.Raw> argTypes) -
Uses of FunctionName in org.apache.cassandra.cql3
Methods in org.apache.cassandra.cql3 with parameters of type FunctionName Modifier and Type Method Description CqlBuilderCqlBuilder. append(FunctionName name) -
Uses of FunctionName in org.apache.cassandra.cql3.functions
Fields in org.apache.cassandra.cql3.functions declared as FunctionName Modifier and Type Field Description protected FunctionNameAbstractFunction. namestatic FunctionNameFromJsonFct. NAMEstatic FunctionNameToJsonFct. NAMEMethods in org.apache.cassandra.cql3.functions that return FunctionName Modifier and Type Method Description FunctionNameFunctionName. asNativeFunction()static FunctionNameOperationFcts. getFunctionNameFromOperator(char operator)Returns the name of the function associated to the specified operator.FunctionNameAbstractFunction. name()FunctionNameFunction. name()static FunctionNameFunctionName. nativeFunction(java.lang.String name)Methods in org.apache.cassandra.cql3.functions with parameters of type FunctionName Modifier and Type Method Description static UDAggregateUDAggregate. create(java.util.Collection<UDFunction> functions, FunctionName name, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, FunctionName stateFunc, FunctionName finalFunc, AbstractType<?> stateType, java.nio.ByteBuffer initcond)static UDFunctionUDFunction. create(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)static UDFunctionUDFunction. createBrokenFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body, InvalidRequestException reason)It can happen that a function has been declared (is listed in the scheam) but cannot be loaded (maybe only on some nodes).booleanFunctionName. equalsNativeFunction(FunctionName nativeFunction)static FunctionFunctionResolver. get(java.lang.String keyspace, FunctionName name, java.util.List<? extends AssignmentTestable> providedArgs, java.lang.String receiverKs, java.lang.String receiverCf, AbstractType<?> receiverType)static charOperationFcts. getOperator(FunctionName function)Returns the operator associated to the specified function.static booleanOperationFcts. isNegation(FunctionName function)Checks if the function with the specified name is a negation.static booleanOperationFcts. isOperation(FunctionName function)Checks if the function with the specified name is an operation.static UDFunctionUDFunction. tryCreate(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)Constructors in org.apache.cassandra.cql3.functions with parameters of type FunctionName Constructor Description AbstractFunction(FunctionName name, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType)Raw(FunctionName name, java.util.List<Term.Raw> terms)UDAggregate(FunctionName name, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, ScalarFunction stateFunc, ScalarFunction finalFunc, java.nio.ByteBuffer initcond)UDFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, DataType[] argDataTypes, AbstractType<?> returnType, DataType returnDataType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)UDFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body) -
Uses of FunctionName in org.apache.cassandra.cql3.selection
Constructors in org.apache.cassandra.cql3.selection with parameters of type FunctionName Constructor Description Raw(FunctionName functionName, java.util.List<Selectable.Raw> args) -
Uses of FunctionName in org.apache.cassandra.cql3.statements.schema
Constructors in org.apache.cassandra.cql3.statements.schema with parameters of type FunctionName Constructor Description CreateAggregateStatement(java.lang.String keyspaceName, java.lang.String aggregateName, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawStateType, FunctionName stateFunctionName, FunctionName finalFunctionName, Term.Raw rawInitialValue, boolean orReplace, boolean ifNotExists)Raw(FunctionName aggregateName, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawStateType, java.lang.String stateFunctionName, java.lang.String finalFunctionName, Term.Raw rawInitialValue, boolean orReplace, boolean ifNotExists)Raw(FunctionName name, java.util.List<ColumnIdentifier> argumentNames, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawReturnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body, boolean orReplace, boolean ifNotExists)Raw(FunctionName name, java.util.List<CQL3Type.Raw> arguments, boolean argumentsSpecified, boolean ifExists)Raw(FunctionName name, java.util.List<CQL3Type.Raw> arguments, boolean argumentsSpecified, boolean ifExists) -
Uses of FunctionName in org.apache.cassandra.exceptions
Fields in org.apache.cassandra.exceptions declared as FunctionName Modifier and Type Field Description FunctionNameFunctionExecutionException. functionNameMethods in org.apache.cassandra.exceptions with parameters of type FunctionName Modifier and Type Method Description static FunctionExecutionExceptionFunctionExecutionException. create(FunctionName functionName, java.util.List<java.lang.String> argTypes, java.lang.String detail)Constructors in org.apache.cassandra.exceptions with parameters of type FunctionName Constructor Description FunctionExecutionException(FunctionName functionName, java.util.List<java.lang.String> argTypes, java.lang.String msg) -
Uses of FunctionName in org.apache.cassandra.schema
Methods in org.apache.cassandra.schema with parameters of type FunctionName Modifier and Type Method Description java.util.Optional<Function>Functions. find(FunctionName name, java.util.List<AbstractType<?>> argTypes)java.util.Optional<Function>Functions. find(FunctionName name, java.util.List<AbstractType<?>> argTypes, Functions.Filter filter)Find the function with the specified namejava.util.Optional<Function>Schema. findFunction(FunctionName name, java.util.List<AbstractType<?>> argTypes)Find the function with the specified namejava.util.Collection<Function>Functions. get(FunctionName name)Get all function overloads with the specified namejava.util.Collection<Function>Schema. getFunctions(FunctionName name)Get all function overloads with the specified namejava.util.Collection<UDAggregate>Functions. getUdas(FunctionName name)Get all UDAs overloads with the specified namejava.util.Collection<UDFunction>Functions. getUdfs(FunctionName name)Get all UDFs overloads with the specified nameFunctionsFunctions. without(FunctionName name, java.util.List<AbstractType<?>> argTypes)Creates a Functions instance with the function with the provided name and argument types removed
-