[
https://issues.apache.org/jira/browse/DRILL-3791?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14989850#comment-14989850
]
ASF GitHub Bot commented on DRILL-3791:
---------------------------------------
Github user jacques-n commented on a diff in the pull request:
https://github.com/apache/drill/pull/235#discussion_r43903198
--- Diff: contrib/storage-jdbc/pom.xml ---
@@ -69,8 +73,203 @@
<artifactId>derbynet</artifactId>
<version>10.11.1.1</version>
<scope>test</scope>
- </dependency>
+ </dependency>
+ <dependency>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ <version>${mysql.connector.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
-
+ <build>
+ <testResources>
+ <testResource>
+ <directory>src/test/resources</directory>
+ <filtering>true</filtering>
+ </testResource>
+ </testResources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <version>2.18.1</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>integration-test</goal>
+ <goal>verify</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
--- End diff --
Can you add some comments on some of these plugins?
> Test JDBC plugin with MySQL
> ---------------------------
>
> Key: DRILL-3791
> URL: https://issues.apache.org/jira/browse/DRILL-3791
> Project: Apache Drill
> Issue Type: Test
> Components: Storage - Other
> Reporter: Andrew
> Assignee: Andrew
> Priority: Blocker
>
> Testing the new JDBC storage plugin against MySQL.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)