-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rewriter for multiple similar APPROX_PERCENTILEs in SELECT clause
- Loading branch information
Showing
9 changed files
with
665 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
<?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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>com.facebook.presto</groupId> | ||
<artifactId>presto-coresql</artifactId> | ||
<version>0.2-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>presto-coresql-rewriter</artifactId> | ||
<name>presto-coresql-rewriter</name> | ||
|
||
<properties> | ||
<air.main.basedir>${project.parent.basedir}</air.main.basedir> | ||
<maven.compiler.source>1.6</maven.compiler.source> | ||
<maven.compiler.target>1.6</maven.compiler.target> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.facebook.presto</groupId> | ||
<artifactId>presto-coresql-parser</artifactId> | ||
<version>0.2-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>add-source</goal> | ||
</goals> | ||
<configuration> | ||
<sources> | ||
<source>${project.build.directory}/generated-sources</source> | ||
</sources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.facebook.presto</groupId> | ||
<artifactId>presto-maven-plugin</artifactId> | ||
<version>0.3</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.1.1</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.skife.maven</groupId> | ||
<artifactId>really-executable-jar-maven-plugin</artifactId> | ||
<version>1.0.5</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<version>1.8</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>io.airlift.maven.plugins</groupId> | ||
<artifactId>sphinx-maven-plugin</artifactId> | ||
<version>2.1</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<configuration> | ||
<rules> | ||
<requireUpperBoundDeps> | ||
<excludes combine.children="append"> | ||
<!-- TODO: fix this in Airlift resolver --> | ||
<exclude>org.alluxio:alluxio-shaded-client</exclude> | ||
<exclude>org.codehaus.plexus:plexus-utils</exclude> | ||
<exclude>com.google.guava:guava</exclude> | ||
</excludes> | ||
</requireUpperBoundDeps> | ||
</rules> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<configuration> | ||
<preparationGoals>clean verify -DskipTests</preparationGoals> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration combine.children="append"> | ||
<fork>true</fork> | ||
<compilerArgs> | ||
<arg>-verbose</arg> | ||
<arg>-J-Xss100M</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration combine.children="append"> | ||
<includes> | ||
<include>**/*.java</include> | ||
<include>target/**/*.java</include> | ||
<include>**/Benchmark*.java</include> | ||
</includes> | ||
<excludes> | ||
<exclude>**/*jmhTest*.java</exclude> | ||
<exclude>**/*jmhType*.java</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
|
||
<!-- Always build a jar with the test classes --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<!-- do not build an empty jar if the project is | ||
e.g. a pom project --> | ||
<skipIfEmpty>true</skipIfEmpty> | ||
<archive> | ||
<manifest> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> | ||
<addClasspath>false</addClasspath> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.gaul</groupId> | ||
<artifactId>modernizer-maven-plugin</artifactId> | ||
<version>2.1.0</version> | ||
<configuration> | ||
<javaVersion>1.8</javaVersion> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
30 changes: 30 additions & 0 deletions
30
rewriter/src/main/java/com/facebook/coresql/rewriter/PatternMatcher.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,30 @@ | ||
/* | ||
* Licensed 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 com.facebook.coresql.rewriter; | ||
|
||
import com.facebook.coresql.parser.AstNode; | ||
|
||
import java.util.Set; | ||
|
||
public interface PatternMatcher | ||
{ | ||
/** | ||
* Traverses an AST, finding the set of nodes that match this pattern matcher's pattern | ||
* | ||
* @param node root of the AST | ||
* @return The set of nodes that match this pattern matcher's pattern | ||
*/ | ||
Set<AstNode> findMatchedNodes(AstNode node); | ||
} |
46 changes: 46 additions & 0 deletions
46
rewriter/src/main/java/com/facebook/coresql/rewriter/RewriteResult.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,46 @@ | ||
/* | ||
* Licensed 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 com.facebook.coresql.rewriter; | ||
|
||
import static java.util.Objects.requireNonNull; | ||
|
||
public class RewriteResult | ||
{ | ||
private String nameOfRewrite; | ||
private String originalSql; | ||
private String rewrittenSql; | ||
|
||
public RewriteResult(String nameOfRewrite, String originalSql, String rewrittenSql) | ||
{ | ||
this.nameOfRewrite = requireNonNull(nameOfRewrite, "name of rewrite is null"); | ||
this.originalSql = requireNonNull(originalSql, "original sql statement is null"); | ||
this.rewrittenSql = requireNonNull(rewrittenSql, "rewritten sql statement is null"); | ||
} | ||
|
||
public String getNameOfRewrite() | ||
{ | ||
return nameOfRewrite; | ||
} | ||
|
||
public String getOriginalSql() | ||
{ | ||
return originalSql; | ||
} | ||
|
||
public String getRewrittenSql() | ||
{ | ||
return rewrittenSql; | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
rewriter/src/main/java/com/facebook/coresql/rewriter/Rewriter.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,23 @@ | ||
/* | ||
* Licensed 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 com.facebook.coresql.rewriter; | ||
|
||
import com.facebook.coresql.parser.Unparser; | ||
|
||
public abstract class Rewriter | ||
extends Unparser | ||
{ | ||
public abstract RewriteResult rewrite(String originalSql); | ||
} |
Oops, something went wrong.