Skip to content

Commit

Permalink
fix pom + minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitsultana committed Sep 21, 2024
1 parent d7d3ccc commit 4764b7f
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public void processSqlWithMultiStageQueryEnginePost(String query, @Suspended Asy
@Path("timeseries/api/v1/query_range")
@ApiOperation(value = "Prometheus Compatible API for Pinot's Time Series Engine")
@ManualAuthorization
public void processTimeSeriesQueryEnginePost(@Suspended AsyncResponse asyncResponse,
public void processTimeSeriesQueryEngine(@Suspended AsyncResponse asyncResponse,
@QueryParam("language") String language,
@Context org.glassfish.grizzly.http.server.Request requestCtx,
@Context HttpHeaders httpHeaders) {
Expand Down Expand Up @@ -273,7 +273,7 @@ public void processTimeSeriesQueryEnginePost(@Suspended AsyncResponse asyncRespo
@Path("timeseries/api/v1/query")
@ApiOperation(value = "Prometheus Compatible API for Instant Queries")
@ManualAuthorization
public void processTimeSeriesInstantQueryPost(String request, @Suspended AsyncResponse asyncResponse,
public void processTimeSeriesInstantQuery(@Suspended AsyncResponse asyncResponse,
@Context org.glassfish.grizzly.http.server.Request requestCtx,
@Context HttpHeaders httpHeaders) {
// TODO: Not implemented yet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
import java.util.List;


/**
* TODO: Dummy implementation. Will be switched out with a proper implementation soon.
*/
public class Tokenizer {
private final String _query;

Expand Down
1 change: 0 additions & 1 deletion pinot-plugins/pinot-timeseries-lang/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<groupId>org.apache.pinot</groupId>
<artifactId>pinot-plugins</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

<artifactId>pinot-timeseries-lang</artifactId>
Expand Down
1 change: 0 additions & 1 deletion pinot-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
<artifactId>pinot</artifactId>
<groupId>org.apache.pinot</groupId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>pinot-plugins</artifactId>
<packaging>pom</packaging>
Expand Down
1 change: 0 additions & 1 deletion pinot-timeseries/pinot-timeseries-planner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<groupId>org.apache.pinot</groupId>
<artifactId>pinot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>pinot-timeseries-planner</artifactId>
Expand Down
1 change: 0 additions & 1 deletion pinot-timeseries/pinot-timeseries-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<groupId>org.apache.pinot</groupId>
<artifactId>pinot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>pinot-timeseries-spi</artifactId>
Expand Down
1 change: 0 additions & 1 deletion pinot-timeseries/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<groupId>org.apache.pinot</groupId>
<artifactId>pinot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<packaging>pom</packaging>

Expand Down

0 comments on commit 4764b7f

Please sign in to comment.