Skip to content

Commit

Permalink
Fixed dependency and concurrency issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
abevk2023 committed Dec 30, 2024
1 parent 3ff2d72 commit 1312c87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions presto-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,11 @@
<artifactId>jaxrs</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
</dependency>

<!-- used by tests but also needed transitively -->
<dependency>
<groupId>com.facebook.airlift</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.UriBuilder;

Expand All @@ -90,7 +89,7 @@
import static org.testng.Assert.assertFalse;
import static org.testng.Assert.assertTrue;

@Test
@Test(singleThreaded = true)
public class TestRestSqlFunctionExecutor
{
@DataProvider(name = "testExecuteFunctionAbs")
Expand Down

0 comments on commit 1312c87

Please sign in to comment.