aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRoman Kulyk <rom.kulyk@gmail.com>2017-08-29 14:10:24 +0000
committerVolodymyr Vysotskyi <vvovyk@gmail.com>2018-01-16 12:10:13 +0200
commit9fabb612f16f6f541b3bde68ad7d734cad26df33 (patch)
treede9369679724aaf5ccd29d6f0b7e2b12e7506b9c /tools
parent450e67094eb6e9a6484d7f86c49b51c77a08d7b2 (diff)
DRILL-3993: Changes to support Calcite 1.13
- fixed all compiling errors (main changes were: Maven changes, chenges RelNode -> RelRoot, implementing some new methods from updated interfaces, chenges some literals, logger changes); - fixed unexpected column errors, validation errors and assertion errors after Calcite update; - fixed describe table/schema statement according to updated logic; - added fixes with time-intervals; - changed precision of BINARY to 65536 (was 1048576) according to updated logic (Calcite overrides bigger precision to own maxPrecision); - ignored some incorrect tests with DRILL-3244; - changed "Table not found" message to "Object not found within" according to new Calcite changes.
Diffstat (limited to 'tools')
-rw-r--r--tools/fmpp/pom.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/tools/fmpp/pom.xml b/tools/fmpp/pom.xml
index 91e686c36..4f4b7e9b1 100644
--- a/tools/fmpp/pom.xml
+++ b/tools/fmpp/pom.xml
@@ -45,9 +45,19 @@
<version>3.3.3</version>
</dependency>
<dependency>
- <groupId>net.sourceforge.fmpp</groupId>
- <artifactId>fmpp</artifactId>
+ <groupId>com.googlecode.fmpp-maven-plugin</groupId>
+ <artifactId>fmpp-maven-plugin</artifactId>
<version>${fmpp.version}</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>log4j</artifactId>
+ <groupId>log4j</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>commons-logging-api</artifactId>
+ <groupId>commons-logging</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>