Skip to content

Commit

Permalink
reverted pom changes, applied almog's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vpapavas committed Sep 3, 2019
1 parent 4ccc75b commit 64b9847
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
8 changes: 0 additions & 8 deletions ksql-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,14 +167,6 @@
<artifactId>wiremock-jre8</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-streams</artifactId>
</dependency>
<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-streams</artifactId>
</dependency>

</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,9 @@ private Function<List<Schema>,Schema> handleUdfSchemaProviderAnnotation(
final Object instance = instantiateUdfClass(theClass, annotation);

return parameterSchemas -> {
final List<SqlType> parameterTypes = parameterSchemas.stream().map(p -> SchemaConverters
.connectToSqlConverter().toSqlType(p)).collect(Collectors.toList());
final List<SqlType> parameterTypes = parameterSchemas.stream()
.map(p -> SchemaConverters.connectToSqlConverter().toSqlType(p))
.collect(Collectors.toList());
return SchemaConverters.sqlToConnectConverter().toConnectSchema(invokeSchemaProviderMethod(
instance, m, parameterTypes, annotation));
};
Expand Down
Binary file modified ksql-engine/src/test/resources/udf-failing-tests.jar
Binary file not shown.

0 comments on commit 64b9847

Please sign in to comment.