[
https://issues.apache.org/jira/browse/CALCITE-2173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16493019#comment-16493019
]
Julian Hyde commented on CALCITE-2173:
--------------------------------------
By the way, in order to get it to build, I had to make a minor change:
{noformat}diff --git a/pom.xml b/pom.xml
index ac741daa9..3e496a285 100644
--- a/pom.xml
+++ b/pom.xml
@@ -593,8 +593,8 @@ limitations under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.7</source>
- <target>1.7</target>
+ <source>1.8</source>
+ <target>1.8</target>
<compilerArgument>-Xlint:deprecation</compilerArgument>
</configuration>
</plugin>
{noformat}
and disable checkstyle:
{noformat}mvn -DskipTests -Dcheckstyle.skip test{noformat}
> Sample implementation of ArrowAdapter
> -------------------------------------
>
> Key: CALCITE-2173
> URL: https://issues.apache.org/jira/browse/CALCITE-2173
> Project: Calcite
> Issue Type: Improvement
> Reporter: Masayuki Takahashi
> Assignee: Julian Hyde
> Priority: Minor
>
> I try to implement Apache Arrow adaper.
> [https://github.com/masayuki038/calcite/tree/arrow]
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)