Search in sources :

Example 1 with SqlMap

use of io.confluent.ksql.schema.ksql.types.SqlMap in project ksql by confluentinc.

the class SqlTypeWalkerTest method shouldVisitMap.

@Test
public void shouldVisitMap() {
    // Given:
    final SqlMap type = SqlTypes.map(SqlTypes.BIGINT, SqlTypes.INTEGER);
    when(visitor.visitBigInt(any())).thenReturn("Expected-key");
    when(visitor.visitInt(any())).thenReturn("Expected-value");
    when(visitor.visitMap(any(), any(), any())).thenReturn("Expected");
    // When:
    final String result = SqlTypeWalker.visit(type, visitor);
    // Then:
    verify(visitor).visitInt(same(SqlTypes.INTEGER));
    verify(visitor).visitMap(same(type), eq("Expected-key"), eq("Expected-value"));
    assertThat(result, is("Expected"));
}
Also used : SqlMap(io.confluent.ksql.schema.ksql.types.SqlMap) Matchers.containsString(org.hamcrest.Matchers.containsString) Test(org.junit.Test)

Example 2 with SqlMap

use of io.confluent.ksql.schema.ksql.types.SqlMap in project ksql by confluentinc.

the class ExpressionFormatterTest method shouldFormatMap.

@Test
public void shouldFormatMap() {
    final SqlMap map = SqlTypes.map(SqlTypes.INTEGER, SqlTypes.BIGINT);
    assertThat(ExpressionFormatter.formatExpression(new Type(map)), equalTo("MAP<INTEGER, BIGINT>"));
}
Also used : SqlMap(io.confluent.ksql.schema.ksql.types.SqlMap) Type(io.confluent.ksql.execution.expression.tree.Type) Test(org.junit.Test)

Example 3 with SqlMap

use of io.confluent.ksql.schema.ksql.types.SqlMap in project ksql by confluentinc.

the class SqlTypeWalker method visitMap.

private static <S, F> S visitMap(final SqlTypeWalker.Visitor<S, F> visitor, final SqlType type) {
    final SqlMap map = (SqlMap) type;
    final S key = visit(map.getKeyType(), visitor);
    final S value = visit(map.getValueType(), visitor);
    return visitor.visitMap(map, key, value);
}
Also used : SqlMap(io.confluent.ksql.schema.ksql.types.SqlMap)

Example 4 with SqlMap

use of io.confluent.ksql.schema.ksql.types.SqlMap in project ksql by confluentinc.

the class CastInterpreter method castToMapFunction.

public static CastFunction castToMapFunction(final SqlType from, final SqlType to, final KsqlConfig config) {
    if (from.baseType() == SqlBaseType.MAP && to.baseType() == SqlBaseType.MAP) {
        final SqlMap fromMap = (SqlMap) from;
        final SqlMap toMap = (SqlMap) to;
        final CastFunction keyCastFunction = castFunction(fromMap.getKeyType(), toMap.getKeyType(), config);
        final CastFunction valueCastFunction = castFunction(fromMap.getValueType(), toMap.getValueType(), config);
        return o -> CastEvaluator.castMap((Map<?, ?>) o, keyCastFunction::cast, valueCastFunction::cast);
    }
    throw new KsqlException("Unsupported cast to " + to + ": " + from);
}
Also used : CastTerm(io.confluent.ksql.execution.interpreter.terms.CastTerm) DecimalUtil(io.confluent.ksql.util.DecimalUtil) Time(java.sql.Time) Date(java.util.Date) SqlMap(io.confluent.ksql.schema.ksql.types.SqlMap) SqlBaseType(io.confluent.ksql.schema.ksql.types.SqlBaseType) ByteBuffer(java.nio.ByteBuffer) SqlDoubles(io.confluent.ksql.schema.ksql.SqlDoubles) SqlTimeTypes(io.confluent.ksql.schema.ksql.SqlTimeTypes) BigDecimal(java.math.BigDecimal) Term(io.confluent.ksql.execution.interpreter.terms.Term) Map(java.util.Map) SqlType(io.confluent.ksql.schema.ksql.types.SqlType) CastFunction(io.confluent.ksql.execution.interpreter.terms.CastTerm.CastFunction) SqlBooleans(io.confluent.ksql.schema.ksql.SqlBooleans) Timestamp(java.sql.Timestamp) KsqlConfig(io.confluent.ksql.util.KsqlConfig) SqlArray(io.confluent.ksql.schema.ksql.types.SqlArray) Objects(java.util.Objects) CastEvaluator(io.confluent.ksql.execution.codegen.helpers.CastEvaluator) List(java.util.List) ComparableCastFunction(io.confluent.ksql.execution.interpreter.terms.CastTerm.ComparableCastFunction) SqlDecimal(io.confluent.ksql.schema.ksql.types.SqlDecimal) KsqlException(io.confluent.ksql.util.KsqlException) SqlTypes(io.confluent.ksql.schema.ksql.types.SqlTypes) SqlMap(io.confluent.ksql.schema.ksql.types.SqlMap) CastFunction(io.confluent.ksql.execution.interpreter.terms.CastTerm.CastFunction) ComparableCastFunction(io.confluent.ksql.execution.interpreter.terms.CastTerm.ComparableCastFunction) KsqlException(io.confluent.ksql.util.KsqlException)

Example 5 with SqlMap

use of io.confluent.ksql.schema.ksql.types.SqlMap in project ksql by confluentinc.

the class GenericsUtil method resolveGenerics.

/**
 * Identifies a mapping from generic type to concrete type based on a {@code schema} and
 * an {@code instance}, where the {@code instance} schema is expected to have no generic
 * types and have the same nested structure as {@code schema}. Any Generic type mapping
 * identified is added to the list passed in.
 *
 * @param mapping   a list of GenericType to SqlType mappings
 * @param schema    the schema that may contain generics
 * @param instance  a schema with the same structure as {@code schema} but with no generics
 *
 * @return whether we were able to resolve generics in the instance and schema
 */
// CHECKSTYLE_RULES.OFF: NPathComplexity
// CHECKSTYLE_RULES.OFF: CyclomaticComplexity
private static boolean resolveGenerics(final List<Entry<GenericType, SqlType>> mapping, final ParamType schema, final SqlArgument instance) {
    if (!isGeneric(schema) && !matches(schema, instance)) {
        // cannot identify from type mismatch
        return false;
    } else if (!hasGenerics(schema)) {
        // nothing left to identify
        return true;
    }
    KsqlPreconditions.checkArgument(isGeneric(schema) || (matches(schema, instance)), "Cannot resolve generics if the schema and instance have differing types: " + schema + " vs. " + instance);
    if (schema instanceof LambdaType) {
        final LambdaType lambdaType = (LambdaType) schema;
        final SqlLambda sqlLambda = instance.getSqlLambdaOrThrow();
        if (lambdaType.inputTypes().size() == sqlLambda.getNumInputs()) {
            if (sqlLambda instanceof SqlLambdaResolved) {
                final SqlLambdaResolved sqlLambdaResolved = (SqlLambdaResolved) sqlLambda;
                int i = 0;
                for (final ParamType paramType : lambdaType.inputTypes()) {
                    if (!resolveGenerics(mapping, paramType, SqlArgument.of(sqlLambdaResolved.getInputType().get(i)))) {
                        return false;
                    }
                    i++;
                }
                return resolveGenerics(mapping, lambdaType.returnType(), SqlArgument.of(sqlLambdaResolved.getReturnType()));
            } else {
                return true;
            }
        } else {
            return false;
        }
    }
    final SqlType sqlType = instance.getSqlTypeOrThrow();
    if (isGeneric(schema)) {
        mapping.add(new HashMap.SimpleEntry<>((GenericType) schema, sqlType));
    }
    if (schema instanceof ArrayType) {
        final SqlArray sqlArray = (SqlArray) sqlType;
        return resolveGenerics(mapping, ((ArrayType) schema).element(), SqlArgument.of(sqlArray.getItemType()));
    }
    if (schema instanceof MapType) {
        final SqlMap sqlMap = (SqlMap) sqlType;
        final MapType mapType = (MapType) schema;
        return resolveGenerics(mapping, mapType.key(), SqlArgument.of(sqlMap.getKeyType())) && resolveGenerics(mapping, mapType.value(), SqlArgument.of(sqlMap.getValueType()));
    }
    if (schema instanceof StructType) {
        throw new KsqlException("Generic STRUCT is not yet supported");
    }
    return true;
}
Also used : LambdaType(io.confluent.ksql.function.types.LambdaType) GenericType(io.confluent.ksql.function.types.GenericType) SqlMap(io.confluent.ksql.schema.ksql.types.SqlMap) StructType(io.confluent.ksql.function.types.StructType) SqlLambda(io.confluent.ksql.schema.ksql.types.SqlLambda) HashMap(java.util.HashMap) KsqlException(io.confluent.ksql.util.KsqlException) ParamType(io.confluent.ksql.function.types.ParamType) MapType(io.confluent.ksql.function.types.MapType) ArrayType(io.confluent.ksql.function.types.ArrayType) SqlLambdaResolved(io.confluent.ksql.schema.ksql.types.SqlLambdaResolved) SqlType(io.confluent.ksql.schema.ksql.types.SqlType) SqlArray(io.confluent.ksql.schema.ksql.types.SqlArray)

Aggregations

SqlMap (io.confluent.ksql.schema.ksql.types.SqlMap)8 SqlArray (io.confluent.ksql.schema.ksql.types.SqlArray)4 SqlType (io.confluent.ksql.schema.ksql.types.SqlType)4 Term (io.confluent.ksql.execution.interpreter.terms.Term)2 SqlLambda (io.confluent.ksql.schema.ksql.types.SqlLambda)2 SqlLambdaResolved (io.confluent.ksql.schema.ksql.types.SqlLambdaResolved)2 KsqlException (io.confluent.ksql.util.KsqlException)2 Test (org.junit.Test)2 CastEvaluator (io.confluent.ksql.execution.codegen.helpers.CastEvaluator)1 Type (io.confluent.ksql.execution.expression.tree.Type)1 CastTerm (io.confluent.ksql.execution.interpreter.terms.CastTerm)1 CastFunction (io.confluent.ksql.execution.interpreter.terms.CastTerm.CastFunction)1 ComparableCastFunction (io.confluent.ksql.execution.interpreter.terms.CastTerm.ComparableCastFunction)1 ColumnReferenceTerm (io.confluent.ksql.execution.interpreter.terms.ColumnReferenceTerm)1 CreateArrayTerm (io.confluent.ksql.execution.interpreter.terms.CreateArrayTerm)1 CreateMapTerm (io.confluent.ksql.execution.interpreter.terms.CreateMapTerm)1 DereferenceTerm (io.confluent.ksql.execution.interpreter.terms.DereferenceTerm)1 FunctionCallTerm (io.confluent.ksql.execution.interpreter.terms.FunctionCallTerm)1 InPredicateTerm (io.confluent.ksql.execution.interpreter.terms.InPredicateTerm)1 IsNotNullTerm (io.confluent.ksql.execution.interpreter.terms.IsNotNullTerm)1