Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions paimon-trino-440/pom.xml → paimon-trino-432/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ under the License.
<version>0.8-SNAPSHOT</version>
</parent>

<artifactId>paimon-trino-440</artifactId>
<name>Paimon : Trino : 440</name>
<artifactId>paimon-trino-432</artifactId>
<name>Paimon : Trino : 432</name>

<properties>
<target.java.version>17</target.java.version>
<jdk.test.version>17</jdk.test.version>
<trino.version>440</trino.version>
<airlift.version>241</airlift.version>
<trino.version>432</trino.version>
<airlift.version>235</airlift.version>
<slice.version>2.2</slice.version>
<maven.toolchains.plugin.version>3.1.0</maven.toolchains.plugin.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@

package org.apache.paimon.trino;

/** {@link TestTrinoITCase} for Trino 427. */
public class TestTrino440ITCase extends TestTrinoITCase {
/** {@link TestTrinoITCase} for Trino 432. */
public class TestTrino432ITCase extends TestTrinoITCase {

public TestTrino440ITCase() {
super(440);
public TestTrino432ITCase() {
super(432);
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ under the License.
<modules>
<module>paimon-trino-420</module>
<module>paimon-trino-427</module>
<module>paimon-trino-440</module>
<module>paimon-trino-432</module>
<module>paimon-trino-common</module>
</modules>

Expand Down