Skip to content

Commit

Permalink
fixes to run stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
reetika-roy committed Feb 10, 2023
1 parent bab38a4 commit 85ecbed
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
27 changes: 20 additions & 7 deletions plugin/trino-truera/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>trino-root</artifactId>
Expand All @@ -11,7 +9,6 @@
</parent>

<artifactId>trino-truera</artifactId>

<description>Trino Truera Extensions</description>
<packaging>trino-plugin</packaging>

Expand All @@ -22,12 +19,12 @@
<dependencies>
<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-spi</artifactId>
<scope>provided</scope>
<artifactId>trino-array</artifactId>
</dependency>
<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-array</artifactId>
<artifactId>trino-spi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.airlift</groupId>
Expand All @@ -41,4 +38,20 @@
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>src/main/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

import io.trino.spi.block.Block;
import io.trino.spi.block.BlockBuilder;
import io.trino.spi.block.BlockBuilderStatus;
import io.trino.spi.block.PageBuilderStatus;
import io.trino.spi.type.BooleanType;
import io.trino.spi.type.DoubleType;
import org.openjdk.jol.info.ClassLayout;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import io.trino.plugin.truera.state.AreaUnderRocCurveState;
import io.trino.spi.block.BlockBuilder;
import io.trino.spi.block.BlockBuilderStatus;
import io.trino.spi.function.*;
import io.trino.spi.type.BooleanType;
import io.trino.spi.type.DoubleType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.trino.plugin.truera.state;

import io.trino.plugin.truera.state.AreaUnderRocCurveState;
import io.trino.plugin.truera.aggregation.GroupedRocAucCurve;
import io.trino.spi.block.Block;
import io.trino.spi.function.AccumulatorStateFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.trino.plugin.truera.state;

import io.trino.plugin.truera.state.AreaUnderRocCurveState;
import io.trino.spi.block.Block;
import io.trino.spi.block.BlockBuilder;
import io.trino.spi.function.AccumulatorStateSerializer;
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
<module>plugin/trino-thrift-testing-server</module>
<module>plugin/trino-tpcds</module>
<module>plugin/trino-tpch</module>
<module>plugin/trino-truera</module>
<module>service/trino-proxy</module>
<module>service/trino-verifier</module>
<module>testing/trino-benchmark</module>
Expand Down

0 comments on commit 85ecbed

Please sign in to comment.