-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests that verify timestamp indexes can be used in MSE
- Loading branch information
Showing
6 changed files
with
268 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
...n-tests/src/test/java/org/apache/pinot/integration/tests/ExplainIntegrationTestTrait.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pinot.integration.tests; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import org.intellij.lang.annotations.Language; | ||
import org.testng.Assert; | ||
|
||
|
||
public interface ExplainIntegrationTestTrait { | ||
|
||
JsonNode postQuery(@Language("sql") String query) | ||
throws Exception; | ||
|
||
default void explainLogical(@Language("sql") String query, String expected) { | ||
try { | ||
JsonNode jsonNode = postQuery("explain plan without implementation for " + query); | ||
JsonNode plan = jsonNode.get("resultTable").get("rows").get(0).get(1); | ||
|
||
Assert.assertEquals(plan.asText(), expected); | ||
} catch (RuntimeException e) { | ||
throw e; | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
|
||
default void explain(@Language("sql") String query, String expected) { | ||
try { | ||
JsonNode jsonNode = postQuery("explain plan for " + query); | ||
JsonNode plan = jsonNode.get("resultTable").get("rows").get(0).get(1); | ||
|
||
Assert.assertEquals(plan.asText(), expected); | ||
} catch (RuntimeException e) { | ||
throw e; | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
|
||
default void explainVerbose(@Language("sql") String query, String expected) { | ||
try { | ||
JsonNode jsonNode = postQuery("set explainPlanVerbose=true; explain plan for " + query); | ||
JsonNode plan = jsonNode.get("resultTable").get("rows").get(0).get(1); | ||
|
||
String actual = plan.asText() | ||
.replaceAll("numDocs=\\[[^\\]]*]", "numDocs=[any]") | ||
.replaceAll("segment=\\[[^\\]]*]", "segment=[any]") | ||
.replaceAll("totalDocs=\\[[^\\]]*]", "totalDocs=[any]"); | ||
|
||
|
||
Assert.assertEquals(actual, expected); | ||
} catch (RuntimeException e) { | ||
throw e; | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.